aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2024-11-23 19:14:19 +0000
committerGravatar Chris Lovering <[email protected]>2024-11-23 19:14:19 +0000
commit3b3723362da38e62fb5709631ab5dba4bd74bf60 (patch)
treec246f52e7c9834c2902aeabf386d6d6e4ecb4745
parentBump deps to latest (diff)
Set ruff to use concise output and suggest unsafe fixes
-rw-r--r--pyproject.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 8b2592fff..79af5adda 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -69,6 +69,8 @@ source = ["tests"]
target-version = "py312"
extend-exclude = [".cache"]
line-length = 120
+output-format = "concise"
+unsafe-fixes = true
[tool.ruff.lint]
select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "I", "ISC", "INT", "N", "PGH", "PIE", "Q", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"]