From fa3d14c233c40e613fb55a89b4f30909af61de09 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Wed, 1 May 2024 12:23:48 -0400 Subject: [PATCH] Update ruff configuration --- pyproject.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7a25e21f..f78e4da0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,13 @@ [tool.ruff] +line-length = 88 +target-version = "py311" + +[tool.ruff.lint] # Enable pycodestyle (E), pyflakes (F), bugbear (B), and bandit (S) rules select = ["E", "F", "B", "S"] -line-length = 88 -# Ignore line length violations that aren't fixed by formatting ignore = ["E501"] -target-version = "py311" -[tool.ruff.flake8-quotes] +[tool.ruff.lint.flake8-quotes] docstring-quotes = "double" [tool.ruff.lint.per-file-ignores]