File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ Insert mypy configuration into :file: `pyproject.toml ` and remove
2
+ config options from :file: `tox.ini `.
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ requires = [
14
14
build-backend = " setuptools.build_meta"
15
15
16
16
17
+ [tool .mypy ]
18
+ # ignore-missing-imports = true
19
+ # check-untyped-defs = true
20
+ # strict = true
21
+ pretty = true
22
+
17
23
18
24
[tool .black ]
19
25
line-length = 88
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ commands = flake8 {posargs:}
49
49
description = Check code style
50
50
basepython = python3
51
51
deps = mypy
52
- commands = mypy {posargs:--ignore-missing-imports --check-untyped-defs src}
52
+ commands = mypy {posargs:src}
53
53
54
54
55
55
[testenv:docstrings]
You can’t perform that action at this time.
0 commit comments