falcion_Whisperer.md/scripts/python/setup.cfg

25 lines
680 B
INI

[flake8]
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
# This contains dependencies for our project, we don't want to fix other problems
venv,
out,
.venv,
venvs,
env
# Ignoring
# - E203: profile BLACK enabled
# - E501: profile BLACK enabled
# - W503: profile BLACK enabled
ignore = E203, E501, W503