summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-11-22 22:32:53 -0500
committerBen Sima <ben@bensima.com>2025-11-22 22:32:53 -0500
commit281aef5a14630027d397aac43a588be1fedd06c1 (patch)
tree4ef1f5f6bae8c59aa3ab9e4913472edb794a74be /pyproject.toml
parentc8720603280b61a12ae0d590c23b9f266744014a (diff)
parent80f11263839802adb232f261364791446948d6ff (diff)
Merge branch 'task/t-1o2cbco62ly' into live
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 15ca3c4..0e8c8f3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ strict = true
implicit_reexport = true
[tool.ruff]
-exclude = ["_", ".git"]
+exclude = ["_", ".git", "build"]
line-length = 80
indent-width = 4
target-version = "py310"
@@ -39,6 +39,10 @@ ignore = [
"S607", # start-process-with-partial-path
"TD002", # missing-todo-author, just don't allow todos
"TD003", # missing-todo-link, just don't allow todos
+ "COM812", # trailing-comma-missing, conflicts with ruff format
+ "ISC001", # implicit-string-concatenation, conflicts with ruff format
+ "E501", # line-too-long
+ "RUF100", # unused-noqa
]
[tool.ruff.lint.isort]