-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionalityneeds community feedback
Description
I am trying to configure flake8 as such:
class test:
__init__(self): pass # pylint: disable=syntax-error
a = 0
c = 2
b = 1
if True:
if True:
pass "flake8.severity": {
"convention": "Warning",
"error": "Error",
"fatal": "Error",
"refactor": "Warning",
"warning": "Warning",
"info": "Warning",
// builtins
"A": "Warning",
// mccabe
"C": "Warning",
// class attributes order
"CCE": "Warning",
// pycodestyles
"E": "Warning",
"E9": "Error", // Runtime
"W": "Warning",
// Pyflakes
"F": "Warning",
// PEP8 Naming convention
"N": "Warning",
// Simplify
"SIM": "Warning",
"SIM9": "Information",
// PYI
"Y": "Warning",
},Only single characters or full error code work. The following do nothing: CCE, E9, SIM, SIM9.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionalityneeds community feedback