11 lines
258 B
INI
11 lines
258 B
INI
# vim: ft=dosini fileencoding=utf-8:
|
|
|
|
[flake8]
|
|
# E265: Block comment should start with '#'
|
|
# E501: Line too long
|
|
# F841: unused variable
|
|
# F401: Unused import
|
|
# E402: module level import not at top of file
|
|
ignore=E265,E501,F841,F401,E402
|
|
max_complexity = 12
|