-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
57 lines (45 loc) · 1.05 KB
/
pyproject.toml
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
[tool.black]
extend-exclude = '(__init__.py|setup.py)'
[tool.mypy]
# global options
exclude = '''(?x)(
^setup.py$
)'''
no_warn_no_return = true
warn_redundant_casts = true
warn_unused_configs = true
show_error_codes = true
# per-module options:
[[tool.mypy.overrides]]
module = "pikepdf.*"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "docassemble.base.*"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "more_itertools"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "sklearn.*"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "docxtpl"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "docx2python"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "bs4"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "mako.*"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "mypy-pdfminer.*"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "mypy-ruamel"
ignore_missing_imports=true
[[tool.mypy.overrides]]
module = "formfyxer"
ignore_missing_imports=true