From 1c2fb8db18b9ffc7ed8f872d2e78d0e62cb0d4da Mon Sep 17 00:00:00 2001
From: Nathan Thomas <nathanthomas707@gmail.com>
Date: Wed, 20 Dec 2023 22:20:36 -0800
Subject: [PATCH] Add ruff config

---
 pyproject.toml | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/pyproject.toml b/pyproject.toml
index cab4eda..309fb08 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -69,3 +69,28 @@ log_cli = true
 [build-system]
 requires = ["poetry-core>=1.0.0"]
 build-backend = "poetry.core.masonry.api"
+
+[tool.ruff.lint]
+# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`)  codes by default.
+select = ["E4", "E7", "E9", "F", "I", "ASYNC", "N"]
+ignore = []
+
+# Allow fix for all enabled rules (when `--fix`) is provided.
+fixable = ["ALL"]
+unfixable = []
+
+# Allow unused variables when underscore-prefixed.
+dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
+
+[tool.ruff.format]
+# Like Black, use double quotes for strings.
+quote-style = "double"
+
+# Like Black, indent with spaces, rather than tabs.
+indent-style = "space"
+
+# Like Black, respect magic trailing commas.
+skip-magic-trailing-comma = false
+
+# Like Black, automatically detect the appropriate line ending.
+line-ending = "auto"