-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Baseline support, a.k.a. disabling rules based on file name regexps #4908
Closed
esilverberg
wants to merge
1
commit into
realm:main
from
perrystreetsoftware:feature/disable_rules_per_file_in_config
Closed
Baseline support, a.k.a. disabling rules based on file name regexps #4908
esilverberg
wants to merge
1
commit into
realm:main
from
perrystreetsoftware:feature/disable_rules_per_file_in_config
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
esilverberg
force-pushed
the
feature/disable_rules_per_file_in_config
branch
from
April 19, 2023 11:44
bd85d25
to
68c801b
Compare
esilverberg
force-pushed
the
feature/disable_rules_per_file_in_config
branch
from
April 19, 2023 12:13
68c801b
to
d4a143f
Compare
Sorry that this PR has been completely ignored. Meanwhile #5475 has superseded this PR. With that being merged, we now have a baseline functionality experimentally available in SwiftLint. It's different from your approach, but the results ought to be the same. Thank you for your efforts anyway! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is another approach to implementing the "baseline" functionality that is introduced in this old PR from 2020.
To use it, you simply add to
.swiftlint.yml
the following section:Where
rule_name
is the name of the rule, andfilename_regexp
is a regular expression evaluated against a filename to determine if the rule should be skipped on the given file.In the last comment regarding this kind of functionality from this old PR, this was written:
I don't think questions 2-6 apply to my new PR, but I'm happy to answer/respond to any additional feedback you may have! Would love to see functionality like this incorporated 🙏