-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathsetup.cfg
More file actions
21 lines (19 loc) · 701 Bytes
/
setup.cfg
File metadata and controls
21 lines (19 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[flake8]
max-line-length = 99
exclude = mypy/codec/*
# Thing to ignore:
# E251: spaces around default arg value (against our style)
# E128: continuation line under-indented (too noisy)
# F401: unused identifiers (useless, as it doesn't see inside # type: comments)
# W601: has_key() deprecated (false positives)
# E701: multiple statements on one line (colon) (we use this for classes with empty body)
# W503: line break before binary operator
# E704: multiple statements on one line (def)
# E402: module level import not at top of file
ignore = E251,E128,F401,W601,E701,W503,E704,E402
[coverage:run]
branch = true
source = mypy
parallel = true
[coverage:report]
show_missing = true