diff options
| author | 2024-09-10 17:12:56 +0100 | |
|---|---|---|
| committer | 2024-09-10 17:12:56 +0100 | |
| commit | 544f8d3e548f4fd10d9bc00b8bff038b53b73357 (patch) | |
| tree | 5a95c22ba4fcbf0e40cf1d1f821bf9f43e01efd4 | |
| parent | Disable ruff preview mode (diff) | |
Change default ruff output format to concise
This makes the check failures much easier to read in terminal
| -rw-r--r-- | pyproject.toml | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index ec50a31..315b40f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ extend-exclude = [".cache"]  line-length = 120  unsafe-fixes = true  preview = false +output-format = "concise"  [tool.ruff.lint]  select = ["ALL"]  |