diff --git a/ruff.toml b/ruff.toml new file mode 100644 index 0000000..b2e66c3 --- /dev/null +++ b/ruff.toml @@ -0,0 +1,14 @@ +line-length = 88 +target-version = "py312" + +[lint] +exclude = [ + "conf/apps/simple_app/malformed.py" +] + +select = ["ALL"] +extend-ignore = ["ANN", "D", "E501", "COM812", "ERA001", "S101", "INP001"] + +[format] +quote-style = "single" +indent-style = "space"