2023-06-17 12:32:48 +02:00
|
|
|
[flake8]
|
|
|
|
max-line-length = 125
|
2024-05-04 05:36:41 +10:00
|
|
|
ignore = E203,E211,E221,E225,E231,E241,E251,E261,E266,E501,E701,E704,W503
|
2024-05-05 15:07:48 +10:00
|
|
|
exclude =
|
|
|
|
# Do not traverse examples
|
|
|
|
examples,
|
|
|
|
# Do not include package initializers
|
|
|
|
__init__.py,
|
|
|
|
# No need to traverse our git directory
|
|
|
|
.git,
|
|
|
|
# There's no value in checking cache directories
|
|
|
|
__pycache__,
|
|
|
|
# No need to include the build path
|
|
|
|
build,
|
|
|
|
# This contains builds that we don't want to check
|
|
|
|
dist # This is generated with `python build .` for package releases
|
|
|
|
# max-complexity = 10
|