Exclude all files starting with . from flake8 tests

Some tests tool and IDE may create a .local directory inside the repo
with virtualenvs for dependencies, other tools may create . directories
or files for temporary reports.
While they can be removed in a second time, or configured differently,
it's advisable to just exclude all file starting with . from the
flake8 tests to avoid confusion and possible unexpected errors.

Change-Id: Iea00e194fbe9c89754fb0a65cdaaabdaad31e4cc
This commit is contained in:
Riccardo Pittau 2023-03-23 14:39:56 +01:00
parent ec6ba65392
commit 7a00c0d674
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ show-source = True
# [E129] Visually indented line with same indent as next logical line.
# [W503] Line break occurred before a binary operator. Conflicts with W504.
ignore = E129,W503
exclude = .venv,.tox,dist,doc,*.egg,.update-venv
exclude=.*,dist,doc,*lib/python*,*egg,build
import-order-style = pep8
application-import-names = ironic_lib
# [H106] Don't put vim configuration in source files.