blob: db48ed9537529dd2f7abeee24188b970d1b71405 [file] [log] [blame]
Rupert Swarbrickb2b5b432020-03-24 17:06:15 +00001[flake8]
2max-line-length = 100
3
4ignore =
5 # This rule is supposed to check that you don't put spaces around
6 # the '=' sign in keyword arguments. Unfortunately, yapf inserts
7 # them when there's a long argument (help text, for example).
8 E251,
9 # Don't complain about line breaks after operators
10 W504