summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
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]