17 lines
335 B
TOML
17 lines
335 B
TOML
select = [
|
|
"C90", # mccabe
|
|
"E", # pycodestyle errors
|
|
"F", # pyflakes errors
|
|
"I", # isort
|
|
"ISC", # flake8-implicit-str-concat
|
|
"N", # pep8-naming
|
|
"PGH", # pygrep-hooks
|
|
"RUF100", # unused noqa (yesqa)
|
|
"UP", # pyupgrade
|
|
"W", # pycodestyle warnings
|
|
"YTT", # flake8-2020
|
|
]
|
|
extend-ignore = [
|
|
"E501", # Line too long
|
|
]
|