Add flake8 `B905` to `extend-ignore` in setup.cfg (#4391)

* Add flake8 `--ignore=B905,N818,W503`

* Add B905 to `extend-ignore` in setup.cfg (thanks @Skylion007), leave .pre-commit-config.yaml as-is on master.
This commit is contained in:
Ralf W. Grosse-Kunstleve 2022-12-09 10:53:03 -08:00 committed by GitHub
parent 9db988013c
commit 663b86c26c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,5 +46,5 @@ zip_safe = False
max-line-length = 120
show_source = True
exclude = .git, __pycache__, build, dist, docs, tools, venv
extend-ignore = E203, E722, B903, B950
extend-ignore = E203, E722, B903, B905, B950
extend-select = B9