summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2025-01-19 18:38:24 +0100
committerWolfgang Müller2025-01-19 23:36:36 +0100
commit6636cb95330381205a3271fdc2878599cd231003 (patch)
tree65fc67bf16d0ab949c30d085019563624b9a2c73
parent91cfd5d306aedb4bdcc1c4045611bee7d2270462 (diff)
downloadhircine-6636cb95330381205a3271fdc2878599cd231003.tar.gz
backend/lint: Ignore dir() for flake8-builtin
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index e554bf7..681c4df 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -59,7 +59,7 @@ select = [
ignore = ["B007", "SIM102", "SIM108"]
[tool.ruff.lint.flake8-builtins]
-builtins-ignorelist = ["copyright", "filter", "hash", "id", "input"]
+builtins-ignorelist = ["copyright", "filter", "hash", "id", "input", "dir"]
[tool.pytest.ini_options]
pythonpath = ["src"]