| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
Thanks for your contribution @jhossbach!
Sorry, something went wrong.
|
Glad to be of help :) |
Sorry, something went wrong.
|
This fix is invalid : with it, every error code Exxx from Flake8 have Error severity level. See https://flake8.pycqa.org/en/latest/user/error-codes.html, https://flake8.pycqa.org/en/latest/glossary.html#term-error-code and https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes Error codes from Flake8 :
The same severity levels are used when pydocstyle and PyFlakes are used directly instead of Flake8 plugin. |
Sorry, something went wrong.
Error codes from Flake8 :
- Fxxx : checks from PyFlakes => Error severity level
- E999 : code for invalid AST => Error severity level
- Exxx : checks from pydocstyle (syntax checks for PEP-8) => Warning
severity level
- Wxxx : checks from pydocstyle (syntax checks for PEP-8) => Warning
severity level
Closes python-lsp#230
Fix PR python-lsp#223
| Back | FazBrowse Home | New Git URL |
See #220. The severity flag for all flake8 diagnostics are declared as warning. With this PR, all flake8 messages starting with "E" (includes messages from pycodestyle) are parsed with error severity level.
Fixes #220