File tree Expand file tree Collapse file tree 3 files changed +22
-14
lines changed Expand file tree Collapse file tree 3 files changed +22
-14
lines changed Original file line number Diff line number Diff line change
1
+ [mypy]
2
+ files = async_timeout, tests
3
+ check_untyped_defs = True
4
+ follow_imports_for_stubs = True
5
+ disallow_any_decorated = True
6
+ disallow_any_generics = True
7
+ disallow_incomplete_defs = True
8
+ disallow_subclassing_any = True
9
+ disallow_untyped_calls = True
10
+ disallow_untyped_decorators = True
11
+ disallow_untyped_defs = True
12
+ implicit_reexport = False
13
+ no_implicit_optional = True
14
+ show_error_codes = True
15
+ strict_equality = True
16
+ warn_incomplete_stub = True
17
+ warn_redundant_casts = True
18
+ warn_unreachable = True
19
+ warn_unused_ignores = True
20
+ disallow_any_unimported = True
21
+ warn_return_any = True
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ lint: mypy check black flake8
8
8
9
9
10
10
mypy :
11
- mypy --strict --show-error-codes async_timeout tests
11
+ mypy
12
12
13
13
14
14
black :
Original file line number Diff line number Diff line change @@ -19,16 +19,3 @@ license_file = LICENSE
19
19
20
20
[mypy-pytest]
21
21
ignore_missing_imports = true
22
-
23
- [mypy]
24
- python_version = 3.6
25
- warn_unused_ignores = True
26
- warn_redundant_casts = True
27
- warn_no_return = True
28
- strict_optional = True
29
- show_traceback = True
30
- show_column_numbers = True
31
- no_implicit_optional = True
32
- disallow_incomplete_defs = True
33
- disallow_any_generics = True
34
- ignore_missing_imports = True
You can’t perform that action at this time.
0 commit comments