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
{{ message }}
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
Some linters like pep8 or rubocop print the severity with a code or with just a letter.
For example pep8 has E123 and W456, whereas rubocop has C, W, E among others.
One alternative to normalize this would be to have something like this in the configuration file:
severities:
- error: "E\\d+"
- warning: "W\\d+"
Additionally, some linters do not provide a severity. In such cases it would be good to provide a default one.
Some linters like
pep8orrubocopprint the severity with a code or with just a letter.For example
pep8hasE123andW456, whereasrubocophasC,W,Eamong others.One alternative to normalize this would be to have something like this in the configuration file:
Additionally, some linters do not provide a severity. In such cases it would be good to provide a default one.