mirror of
https://github.com/borgbase/vorta
synced 2024-12-22 07:43:09 +00:00
23 lines
488 B
TOML
23 lines
488 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
# exclude = ["package", "build", "dist", ".git", ".idea", ".cache", ".tox", ".eggs", "./src/vorta/__init__.py", ".direnv", "env"]
|
|
include = ["src/**/*.py", "tests/**/*.py"]
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"E", # Error
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"W", # Warning
|
|
"YTT", # flake8-2020
|
|
]
|
|
ignore = [
|
|
"F401",
|
|
]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "preserve"
|