diff options
author | Wolfgang Müller | 2025-01-19 18:38:24 +0100 |
---|---|---|
committer | Wolfgang Müller | 2025-01-19 23:36:36 +0100 |
commit | 6636cb95330381205a3271fdc2878599cd231003 (patch) | |
tree | 65fc67bf16d0ab949c30d085019563624b9a2c73 | |
parent | 91cfd5d306aedb4bdcc1c4045611bee7d2270462 (diff) | |
download | hircine-6636cb95330381205a3271fdc2878599cd231003.tar.gz |
backend/lint: Ignore dir() for flake8-builtin
-rw-r--r-- | pyproject.toml | 2 |
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"] |