blob: 6b824e97c32c7862f19e05c21df46b0e1b6baabc [file] [log] [blame]
David Pursehousebb5b1a02016-09-02 14:20:38 +09001[flake8]
David Pursehouse119085e2020-02-12 11:39:27 +09002max-line-length=100
David Pursehousedc631812020-02-12 16:42:39 +09003ignore=
4 # E111: Indentation is not a multiple of four
5 E111,
6 # E114: Indentation is not a multiple of four (comment)
7 E114,
8 # E402: Module level import not at top of file
9 E402,
David Pursehouse076512a2020-02-15 11:43:24 +090010 # E731: do not assign a lambda expression, use a def
11 E731,
David Pursehousedc631812020-02-12 16:42:39 +090012 # W503: Line break before binary operator
13 W503,
14 # W504: Line break after binary operator
15 W504