forked from USEPA/pyaqsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
39 lines (30 loc) · 736 Bytes
/
mypy.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
36
37
38
39
[mypy]
strict=True
ignore_missing_imports=True
#exclude = ['.\dev\*', '*\tests\*', '.setup.py$']
disable_error_code = import-untyped
exclude = (?x)(
^test_\.py$
| *\dev\.py$
| *\setup.py$
)
color_output = True
mypy_path = $MYPY_CONFIG_FILE/
[mypy-pyaqsapi.*]
ignore_missing_imports=True
[mypy-pyaqsapi.helperfunctions]
ignore_missing_imports=True
[mypy-pyaqsapi.bysite]
ignore_missing_imports=True
[mypy-pyaqsapi.bycbsa]
ignore_missing_imports=True
[mypy-pyaqsapi.byma]
ignore_missing_imports=True
[mypy-pyaqsapi.bystate]
ignore_missing_imports=True
[mypy-pyaqsapi.bycounty]
ignore_missing_imports=True
[mypy-pyaqsapi.bysite]
ignore_missing_imports=True
[mypy-pyaqsapi.listfunctions]
ignore_missing_imports=True