mirror of https://github.com/python/cpython
21 lines
493 B
TOML
21 lines
493 B
TOML
|
target-version = "py310"
|
||
|
fix = true
|
||
|
line-length = 79
|
||
|
|
||
|
[lint]
|
||
|
select = [
|
||
|
"C4", # flake8-comprehensions
|
||
|
"E", # pycodestyle
|
||
|
"F", # pyflakes
|
||
|
"I", # isort
|
||
|
"ISC", # flake8-implicit-str-concat
|
||
|
"LOG", # flake8-logging
|
||
|
"PGH", # pygrep-hooks
|
||
|
"PT", # flake8-pytest-style
|
||
|
"PYI", # flake8-pyi
|
||
|
"RUF100", # Ban unused `# noqa` comments
|
||
|
"UP", # pyupgrade
|
||
|
"W", # pycodestyle
|
||
|
"YTT", # flake8-2020
|
||
|
]
|