mirror of
https://github.com/python/peps.git
synced 2026-01-11 01:28:32 -05:00
16 lines
247 B
TOML
16 lines
247 B
TOML
output-format = "full"
|
|
target-version = "py310"
|
|
|
|
[lint]
|
|
ignore = [
|
|
"E501", # Line too long
|
|
]
|
|
|
|
select = [
|
|
"E", # pycodestyle errors
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"PT", # flake8-pytest-style
|
|
"W", # pycodestyle warnings
|
|
]
|