summaryrefslogtreecommitdiff
path: root/backend/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'backend/pyproject.toml')
-rw-r--r--backend/pyproject.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/backend/pyproject.toml b/backend/pyproject.toml
new file mode 100644
index 00000000..dd5a6c03
--- /dev/null
+++ b/backend/pyproject.toml
@@ -0,0 +1,11 @@
+[flake8]
+max-line-length = 88
+
+[tool.ruff]
+ignore = [
+ # Ignore line length check and let Black handle it
+ "E501"
+]
+
+# Assume Python 3.10.
+target-version = "py310"