python-language-server icon indicating copy to clipboard operation
python-language-server copied to clipboard

Allow changing severity of flake8 messages

Open nawordar opened this issue 3 years ago • 0 comments

It annoys me that all pyflakes messages reported by flake8 have severity of errors. I know this is subjective and some people prefer to have everything reported as errors, so I think this should be configurable. For example:

{
  "pyls.plugins.flake8.severity": {
    "F": "warning",  # Set default severity of pyflakes messages to warning
    "F999": "error"  # ...but display F999 messages as errors
  }
}

nawordar avatar Aug 09 '22 06:08 nawordar