17 lines
296 B
TOML
17 lines
296 B
TOML
[tool.ruff]
|
|
line-length = 88
|
|
extend-exclude = [
|
|
"excluded.py",
|
|
"migrations",
|
|
"directory/also_excluded.py",
|
|
]
|
|
per-file-ignores = [
|
|
"__init__.py:F401",
|
|
]
|
|
|
|
[tool.ruff.flake8-quotes]
|
|
inline-quotes = "single"
|
|
multiline-quotes = "double"
|
|
docstring-quotes = "double"
|
|
avoid-escape = true
|