blob: 8b428805d7a21db11dbf425763ecaf8e225b1233 [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,
10 # W503: Line break before binary operator
11 W503,
12 # W504: Line break after binary operator
13 W504