Files
gh-basher83-lunar-claude-pl…/skills/python-code-quality/examples/ruff-minimal.toml
2025-11-29 18:00:18 +08:00

17 lines
270 B
TOML

[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"