Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable a formatter for a path #5625

Open
2 of 3 tasks
corentinmusard opened this issue Mar 25, 2025 · 3 comments
Open
2 of 3 tasks

Disable a formatter for a path #5625

corentinmusard opened this issue Mar 25, 2025 · 3 comments
Labels
no decision No decision to fix or not proposal

Comments

@corentinmusard
Copy link

corentinmusard commented Mar 25, 2025

Welcome

How did you install golangci-lint?

Brew

Your feature request related to a problem? Please describe

(using version 2.0.1)

Can you make it possible to disable a specific formatter for a give path?

For linters we have

  exclusions:
    rules:
      # Exclude some linters from running on tests files.
      - linters:
          - containedctx
          - dogsled
        path: _test.go

Use case: I want to enable golines everywhere but not on my _test.go files.

Describe the solution you'd like

formatters:
  enable:
    - golines
  exclusions:
    paths:
      - linters:
          - golines
        path: _test.go

Describe alternatives you've considered

Keeping golines disabled

Additional context

No response

Supporter

@corentinmusard corentinmusard added the enhancement New feature or improvement label Mar 25, 2025
Copy link

boring-cyborg bot commented Mar 25, 2025

Hey, thank you for opening your first Issue ! 🙂 If you would like to contribute we have a guide for contributors.

@ldez
Copy link
Member

ldez commented Mar 25, 2025

Hello,

Currently, you cannot disable one formatter for a path, but you can exclude a path (for all formatters):

formatters:
  paths:
    - _test.go

Can you explain why do you want to apply formatters except one on a specific file?

@ldez ldez added the feedback required Requires additional feedback label Mar 25, 2025
@corentinmusard
Copy link
Author

Thank you for the quick response!

We have a lot of long one-liner in our units tests that I want to keep in a single line. Such as:

createdUser := client.User.Create().SetID("dummy_id").SetName("Dummy User").SetEmail("[email protected]").SaveX(ctx)

Making them multiline makes our tests much longer and less readable, so I'd like to disable this formatter for test files

@ldez ldez added no decision No decision to fix or not proposal and removed enhancement New feature or improvement feedback required Requires additional feedback labels Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
no decision No decision to fix or not proposal
Projects
None yet
Development

No branches or pull requests

2 participants