1[flake8] 2exclude = .venv*, 3 4# PEP 8 Style Guide limits line length to 79 characters 5max-line-length = 159 6 7ignore = 8 # continuation line under-indented for hanging indent 9 E121 10 # continuation line over-indented for hanging indent 11 E126, 12 # continuation line under-indented for visual indent 13 E128, 14 # whitespace before ':' 15 E203, 16 # missing whitespace around arithmetic operator 17 E226, 18 # missing whitespace after ',' 19 E231, 20 # expected 2 blank lines, found 1 21 E302, 22 # too many blank lines 23 E303, 24 # imported but unused 25 F401, 26 # f-string is missing placeholders 27 F541, 28 # local variable assigned to but never used 29 F841, 30 # line break before binary operator 31 W503, 32 # line break after binary operator 33 W504, 34