23 lines
460 B
TOML
23 lines
460 B
TOML
|
line-length = 120
|
||
|
|
||
|
# https://docs.astral.sh/ruff/rules/
|
||
|
[lint]
|
||
|
extend-select = [
|
||
|
"Q", # quotes
|
||
|
"PT", # pytest
|
||
|
"I", # isort
|
||
|
"F", # pyflakes
|
||
|
"E", # pycodestyle (errors)
|
||
|
"W", # pycodestyle (warnings)
|
||
|
"UP", # pyupgrade
|
||
|
"ISC", # implicit string concat
|
||
|
|
||
|
"T20", # no print/pprint
|
||
|
"G001", # no str.format in logging
|
||
|
"C901", # check for complexity
|
||
|
]
|
||
|
|
||
|
[lint.flake8-quotes]
|
||
|
inline-quotes = "single"
|
||
|
docstring-quotes = "single"
|