kicad/old/scripts/KiBoM/setup.cfg

11 lines
228 B
INI
Raw Permalink Normal View History

2020-02-04 17:33:02 -07:00
[flake8]
ignore =
# - W293 - blank lines contain whitespace
W293,
# - E501 - line too long (82 characters)
E501, E722,
# - C901 - function is too complex
C901,
exclude = .git,__pycache__,*/migrations/*
max-complexity = 20