Newer
Older
[tool.ruff]
exclude = [".git", "__pycache__"]
ignore = ["E501"]
select = [
# pycodestyle
"E",
"W",
# Pyflakes
"F",
# Flake8 Debugger
"T1",
# Isort
"I",
[tool.ruff.per-file-ignores]
# Ignore `pytest-composite-assertion` rules of `flake8-pytest-style` linter for non-test files
"arkindex_worker/**/*.py" = ["PT018"]
[tool.ruff.isort]
known-first-party = ["arkindex", "arkindex_common", "arkindex_worker"]
known-third-party = [
"PIL",
"apistar",
"gitlab",
"gnupg",
"peewee",
"playhouse",
"pytest",
"requests",
"responses",
"setuptools",
"sh",
"shapely",
"tenacity",
"yaml",
"zstandard",
]