Files
snippet-manager/pyproject.toml
7000pctAUTO 2daad00894
Some checks failed
CI / test (push) Failing after 12s
CI / lint (push) Failing after 7s
Add pyproject.toml with ruff configuration to limit linting scope
2026-03-22 11:32:45 +00:00

9 lines
166 B
TOML

[tool.ruff]
include = ["snip/**/*.py", "tests/**/*.py"]
[tool.ruff.lint]
select = ["F", "E", "W"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["F401"]