-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
60 lines (47 loc) · 1012 Bytes
/
mypy.ini
File metadata and controls
60 lines (47 loc) · 1012 Bytes
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
[mypy]
python_version = 3.12
strict = True
disable_error_code = no-untyped-call
ignore_missing_imports = True
plugins = pydantic.mypy
[mypy-appenv]
strict = False
ignore_errors = True
[mypy-main]
strict = False
ignore_errors = True
[mypy-pytest]
strict = False
ignore_errors = True
[mypy-scripts]
strict = False
ignore_errors = True
[mypy-scripts.*]
strict = False
ignore_errors = True
[mypy-examples]
strict = False
ignore_errors = True
[mypy-examples.*]
strict = False
ignore_errors = True
[mypy-docs]
strict = False
ignore_errors = True
[mypy-docs.*]
strict = False
ignore_errors = True
[mypy-risclog.*.conftest]
strict = False
ignore_missing_imports = True
disable_error_code = import-untyped, attr-defined, no-untyped-def
[mypy-*.tests]
strict = False
ignore_errors = True
disable_error_code = no-untyped-def, no-untyped-call
[mypy-*.tests.*]
strict = False
ignore_errors = True
disable_error_code = no-untyped-def, no-untyped-call
[mypy-risclog.*.api.*.view.*]
allow_untyped_decorators = True