1# This configuration is specific to test_*.py; you need to invoke it
2# by specifically naming this config, like this:
3#
4# $ flake8 --config=.flake8-tests [SOURCES]
5#
6# This will be possibly merged in the future.
7
8[flake8]
9max-line-length = 100
10ignore =
11  # temporary ignores until we sort it out
12  B017,
13  E302,
14  E303,
15  E306,
16  E501,
17  E701,
18  E704,
19  F722,
20  F811,
21  F821,
22  F841,
23  W503,
24  # irrelevant plugins
25  B3,
26  DW12,
27  # consistency with mypy
28  W504
29