20 lines
366 B
TOML
20 lines
366 B
TOML
[tool.ruff]
|
|
exclude = [".git","__pycache__"]
|
|
|
|
line-length = 99
|
|
indent-width = 4
|
|
|
|
ignore = ["W191", "E111", "E114", "E117", "S101", "S105"]
|
|
select = ["F", "E", "I", "W", "S"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space"
|
|
line-ending = "lf"
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"ignore::FutureWarning",
|
|
"ignore::DeprecationWarning",
|
|
]
|