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
|
|
|
|
ignore=E265,E501,F841,F401,E402
|
2014-06-15 11:36:28 +02:00
|
|
|
max_complexity = 12
|