-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
51 lines (36 loc) · 953 Bytes
/
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
# see https://mypy.readthedocs.io/en/stable/config_file.html
[mypy]
# warns about unneeded # type: ignore comments
warn_unused_ignores=0
strict_optional = false
[mypy-.*]
ignore_missing_imports = True
[mypy-cmd2.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-stevedore.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-colorama.*]
ignore_missing_imports = True
[mypy-bitmath.*]
ignore_missing_imports = True
[mypy-pixcat.*]
ignore_missing_imports = True
[mypy-jsonschema.*]
ignore_missing_imports = True
[pylint]
ignore = E226,E302,E41,E265,E301,E303,E125,E128
[pycodestyle]
# E301 expected 1 blank line, found 0
# e303 too many blank lines
ignore = E226,E302,E41,E265,E301,E303,E125,E128,E712,W503
max-line-length = 120