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"