|
|
|
|
|
by IshKebab
790 days ago
|
|
I can't say I've seen any but some of the code style ones are very prescriptive (function longer than N lines, short variable names etc.). Single letter variable names are totally fine in some cases. And while very long functions may be bad, it's pretty annoying when you're adding one line to a function for the linter to say "nope. have you considered dropping everything and refactoring this?" You can easily turn them off though. I can't remember any code based ones that are really wrong. Maybe some are prone to false positives, e.g. warning about a default `= []` argument. But you can waive them individually. |
|