-
Notifications
You must be signed in to change notification settings - Fork 133
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
Allow disabling certain rules #148
Comments
Actually, I went and looked at rules.clj and it looks like we could get what we want by just copying the existing So it's possible, which is good for me to know! It's just not granular enough right now to swap out a small number of rules. |
Yeah, there really needs to be identifiers for every rule (or collection of rules) which would let people specify rules to include/ignore. A PR on this would be amazing if you're inclined :) |
I am also interested in seeing this, for the same reasons that @lvh stated in RackSec/desdemona#16. In fact usage of the threading macro is almost the only thing kibit complains about on our code-base. |
Any hope for this anytime soon? |
@danielcompton Any groundwork on this or would you take a PR? |
Hi @danielcompton! There are already 4 incoming PRs for this repo providing this feature (and adding custom rules, see #66):
And there is, as well, an unfinished attempt to have a fine-grained ruleset (as a map with IDs and descriptions) in the #176. While the last one is unfinished (and for a good reason, since it's a huge effort requiring a solid Clojure and kibit background), other three are quite straightforward and (almost) equally ready to be approved and merged. It would be great if any collaborator of this project will finally approve at least one of these PRs. Cheers, |
One of Kibit's current rules is, "replace
(filter seq coll)
with(remove empty? coll)
". Some of the people on my team prefer(filter seq coll)
, so I'd like to disable that one rule, while using the rest of Kibit as usual.From looking at the code, it seems like there isn't a simple way to specify one individual rule for removal. I guess the user could provide literals for what rules to remove... Alternatively, they could be named and then have the removals operate on those names.
The text was updated successfully, but these errors were encountered: