aboutsummaryrefslogtreecommitdiff
path: root/.flake8-tests
blob: 5a97fe8979f2af3d904102a06484d64fc22a33f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This configuration is specific to test_*.py; you need to invoke it
# by specifically naming this config, like this:
#
# $ flake8 --config=.flake8-tests [SOURCES]
#
# This will be possibly merged in the future.

[flake8]
max-line-length = 100
ignore =
  # temporary ignores until we sort it out
  B017,
  E302,
  E303,
  E306,
  E501,
  E701,
  E704,
  F722,
  F811,
  F821,
  F841,
  W503,
  # irrelevant plugins
  B3,
  DW12,
  # consistency with mypy
  W504