You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After #234, all Flake8 codes starting with "F" are reported with error severity. This is overly high: the only codes that really errors are F821, F823, F831, and maybe F405 and F822.
Can we add explicit checks for error codes to classify them as errors vs. warnings?
The text was updated successfully, but these errors were encountered:
Hey @nexplor, thanks for reporting. I have no problem with that, so please submit a pull request to provide more fine-grained error reports from Flake8.
I feel troubled by this: Flake8 is really not designed to fine-grain all errors. Similar to the above, e.g. F501, F521 and F721 would need to be declared as errors. So either we carefully design the severeness of all error codes or we convince the flake8 maintainers to make the error codes more meaningful. You might consider using pycodestyle, mccabe and pyflakes separately as they support better fine-graining.
After #234, all Flake8 codes starting with "F" are reported with error severity. This is overly high: the only codes that really errors are F821, F823, F831, and maybe F405 and F822.
Can we add explicit checks for error codes to classify them as errors vs. warnings?
The text was updated successfully, but these errors were encountered: