You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-09-11 08:50:45 +03:00
23 lines
499 B
TOML
23 lines
499 B
TOML
[tool.ruff]
|
|
line-length = 80
|
|
target-version = "py39"
|
|
# Enable common rule sets
|
|
select = [
|
|
"E", # pycodestyle errors
|
|
"F", # pyflakes: undefined names, unused imports, etc.
|
|
"I", # isort: import sorting
|
|
"B", # flake8-bugbear: common bugs and anti-patterns
|
|
"UP", # pyupgrade: use modern Python syntax
|
|
"N", # pep8-naming: naming conventions
|
|
]
|
|
|
|
ignore = []
|
|
|
|
# Exclude cache and temporary directories
|
|
exclude = [
|
|
"__pycache__",
|
|
]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "single"
|