16 lines
236 B
TOML
16 lines
236 B
TOML
|
ignore = [
|
||
|
"E501", # Line too long
|
||
|
]
|
||
|
|
||
|
select = [
|
||
|
"E", # pycodestyle errors
|
||
|
"F", # pyflakes
|
||
|
"I", # isort
|
||
|
"PT", # flake8-pytest-style
|
||
|
"W", # pycodestyle warnings
|
||
|
]
|
||
|
|
||
|
show-source = true
|
||
|
|
||
|
target-version = "py39"
|