2014-06-19 09:04:37 +02:00
|
|
|
# vim: ft=dosini fileencoding=utf-8:
|
|
|
|
|
2014-06-15 11:36:28 +02:00
|
|
|
[flake8]
|
|
|
|
# E265: Block comment should start with '#'
|
|
|
|
# E501: Line too long
|
|
|
|
# F841: unused variable
|
2015-02-01 22:38:40 +01:00
|
|
|
# F401: Unused import
|
2015-02-08 21:56:52 +01:00
|
|
|
# E402: module level import not at top of file
|
2015-02-16 20:26:09 +01:00
|
|
|
# E266: too many leading '#' for block comment
|
2015-02-18 14:45:31 +01:00
|
|
|
# W503: line break before binary operator
|
|
|
|
ignore=E265,E501,F841,F401,E402,E266,W503
|
2014-06-15 11:36:28 +02:00
|
|
|
max_complexity = 12
|
2015-03-26 07:56:29 +01:00
|
|
|
exclude=resources.py
|