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 ea58f64..aa09ac8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,7 +8,7 @@ ignore_missing_imports = true
disable_error_code = "import-untyped"
[tool.ruff]
-exclude = ["_", ".git"]
+exclude = ["_", ".git", "build"]
line-length = 80
indent-width = 4
target-version = "py310"
@@ -44,6 +44,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]