-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
feat: replace run.skip-xxx
options by issues.exclude-xxx
options
#4509
Merged
+234
−159
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ldez
added
enhancement
New feature or improvement
area: config
Related to .golangci.yml and/or cli options
labels
Mar 15, 2024
ldez
force-pushed
the
feat/skip-deprecation
branch
6 times, most recently
from
March 15, 2024 04:46
9b1cfe1
to
ad09dde
Compare
alexandear
reviewed
Mar 15, 2024
ldez
force-pushed
the
feat/skip-deprecation
branch
from
March 15, 2024 16:55
894fabc
to
5de9d08
Compare
alexandear
approved these changes
Mar 15, 2024
ldez
force-pushed
the
feat/skip-deprecation
branch
from
March 15, 2024 18:45
2b038c9
to
a69b8b6
Compare
ldez
force-pushed
the
feat/skip-deprecation
branch
from
March 15, 2024 18:46
a69b8b6
to
ceef5f7
Compare
ldez
force-pushed
the
feat/skip-deprecation
branch
from
March 15, 2024 18:52
ceef5f7
to
7b2fd9f
Compare
bombsimon
reviewed
Mar 16, 2024
bombsimon
reviewed
Mar 16, 2024
bombsimon
approved these changes
Mar 16, 2024
lunny
pushed a commit
to go-gitea/gitea
that referenced
this pull request
Apr 11, 2024
Update and adapt to one setting [deprecation](golangci/golangci-lint#4509).
5 tasks
9 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The option name
skip-xxx
is a source of confusion.And to increase the confusion, those options are inside the section
run
.This sample of issues illustrate the problem: #1912, #2748, #4084, #3775, #1832, #4360
My proposal is move and rename those options:
run.skip-dirs
deprecation: replaced byissues.exclude-dirs
run.skip-dirs-use-default
deprecation: replaced byissues.exclude-dirs-use-default
run.skip-files
deprecation: replaced byissues.exclude-files
This is a non-breaking change: the
skip-xxx
will still work but with a warning, andissues.exclude-xxx
options do the same things asskip-xxx
.log output
Using a flag:
Using the file:
one commit, one change.