forked from openshift-eng/art-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
35 lines (33 loc) · 817 Bytes
/
tox.ini
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
29
30
31
32
33
34
35
# we don't use tox, but this is a good place to put flake8 config
[flake8]
ignore =
# imported but unused
# __init__ often imports to make available
# but does not use
F401,
# Line too long
E501,
# module level import not at top of file
E402,
# multiple imports on one line
E401,
# class names should used CapWords
N801,
# argument name should be lowercase
N803,
# function name should be lowercase
N802,
# variable in function should be lowercase
N806,
# redefinition of unused
F811
# lambda
E731,
# bare except
E722,
# line break before binary operator
W503,
# missing whitespace around arithmetic operator
E226,
exclude = build/*, *.ini, *.in, MANIFEST*, *.md, .eggs, .tox, .venv
max-complexity = -1