summaryrefslogtreecommitdiff
path: root/.flake8
blob: aa38c6f62317c84274c288e35102d85b4b386fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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
# E266: too many leading '#' for block comment
ignore=E265,E501,F841,F401,E402,E266
max_complexity = 12