From bd5c7ee339fc63a9c0609181aee31b48608e7d06 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Fri, 20 Jun 2025 08:29:28 -0500 Subject: [PATCH] updated ruff rules --- ruff.toml | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/ruff.toml b/ruff.toml index b2e66c3..eebdf1c 100644 --- a/ruff.toml +++ b/ruff.toml @@ -1,14 +1,29 @@ -line-length = 88 +line-length = 100 target-version = "py312" +[format] +quote-style = "single" +indent-style = "space" + [lint] exclude = [ "conf/apps/simple_app/malformed.py" ] select = ["ALL"] -extend-ignore = ["ANN", "D", "E501", "COM812", "ERA001", "S101", "INP001"] +extend-ignore = [ + "ANN", + "BLE001", + "COM812", + "D", + "E501", + "ERA001", + "INP001", + "S101", +] -[format] -quote-style = "single" -indent-style = "space" + +[lint.flake8-quotes] +inline-quotes = "single" +docstring-quotes = "double" +multiline-quotes = "double"