forked from speced/bikeshed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
72 lines (71 loc) · 1.79 KB
/
setup.cfg
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[flake8]
ignore =
E203, # just fires a bunch on list ranges
E265, # don't care
E501, # line lengths are a fake idea
E722, # bare accept is fine
F403, # fine with using a few star imports still
F405, # ditto
W503, # this 'error' is completely backward and will change eventually
N802,
N803,
N806,
N812,
N815,
N816,
max-line-length=300
per-file-ignores =
bikeshed/lint/__init__.py:F401
bikeshed/h/__init__.py:F401
bikeshed/markdown/__init__.py:F401
bikeshed/shorthands/__init__.py:F401
bikeshed/refs/__init__.py:F401
bikeshed/update/__init__.py:F401
bikeshed/wpt/__init__.py:F401
bikeshed/__init__.py:F401
bikeshed/config/__init__.py:F401
bikeshed/stringEnum/__init__.py:F401
[pylint.MESSAGES CONTROL]
disable=
arguments-differ,
broad-except,
c-extension-no-member,
dangerous-default-value,
duplicate-code,
eval-used,
exec-used,
fixme,
global-statement,
import-outside-toplevel,
inconsistent-return-statements,
invalid-name,
keyword-arg-before-vararg,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-else-break,
no-else-continue,
no-else-raise,
no-else-return,
no-self-use,
not-callable,
pointless-string-statement,
redefined-builtin,
redefined-outer-name,
stop-iteration-return,
superfluous-parens,
too-few-public-methods,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-return-statements,
too-many-statements,
unsubscriptable-object,
unused-wildcard-import,
useless-else-on-loop,
wildcard-import,
wrong-import-position,