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
Pycodestyle error codes (which are reported by flake8) are grouped by prefix: E1xx for indentation, E2xx for whitespaces, etc.
Currently, this extension could override flake8 severity only if full error code matches. It would be great to specify such "prefix" in config, and override all matching error codes at once. This also matches the behavior of flake8 itself.
Pycodestyle error codes (which are reported by flake8) are grouped by prefix:
E1xx
for indentation,E2xx
for whitespaces, etc.Currently, this extension could override flake8 severity only if full error code matches. It would be great to specify such "prefix" in config, and override all matching error codes at once. This also matches the behavior of flake8 itself.
For example, the following config:
Will report all
Exxx
errors as warnings, and all indentation related errors (E1xx
) as information.The text was updated successfully, but these errors were encountered: