30 lines
No EOL
574 B
TOML
30 lines
No EOL
574 B
TOML
[tool.ruff]
|
|
exclude = [".git", "continuwuitybot/vendor"]
|
|
target-version = "py314"
|
|
line-length = 120
|
|
indent-width = 4
|
|
respect-gitignore = true
|
|
|
|
[tool.ruff.lint]
|
|
fixable = ["ALL"]
|
|
ignore = ["F403", "F405"]
|
|
select = ["E", "F"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space"
|
|
skip-magic-trailing-comma = false
|
|
line-ending = "auto"
|
|
|
|
|
|
[tool.ruff.lint.isort]
|
|
case-sensitive = true
|
|
combine-as-imports = true
|
|
detect-same-package = true
|
|
|
|
[tool.ruff.lint.pycodestyle]
|
|
max-doc-length = 120
|
|
max-line-length = 120
|
|
|
|
[tool.ruff.lint.pyflakes]
|
|
allowed-unused-imports = [] |