diff --git a/ruff.toml b/ruff.toml new file mode 100644 index 0000000..1acefda --- /dev/null +++ b/ruff.toml @@ -0,0 +1,13 @@ +target-version = "py310" + +[lint] +select = ["E", "F", "W", "I", "B", "UP"] +ignore = [] + +[lint.isort] +known-first-party = ["selectel_ml_tui"] + +[format] +quote-style = "double" +indent-style = "space" +line-ending = "lf"