diff options
author | Wolfgang Müller | 2024-11-14 16:36:16 +0100 |
---|---|---|
committer | Wolfgang Müller | 2024-11-14 16:51:56 +0100 |
commit | c212191bbf288b4362d0a64eae0df2afcb76d82c (patch) | |
tree | 9c4c898e041c914a6d89ba03b3d7e4890113fc1f | |
parent | 8fdee29205deb85485fafe742b6e4ddade191eb8 (diff) | |
download | hircine-c212191bbf288b4362d0a64eae0df2afcb76d82c.tar.gz |
backend/lint: Ignore B007
B007 is "unused-loop-control-variable", which is only enabled by default
because an unused variable in a loop statement "can confuse readers".
The only couple of places that happens in this codebase is when
unpacking os.walk, which really shouldn't be a problem.
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index fa96a16..784197d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ select = [ "FURB" # refurb ] -ignore = ["SIM102", "SIM108"] +ignore = ["B007", "SIM102", "SIM108"] [tool.pytest.ini_options] pythonpath = ["src"] |