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 = [
1414build-backend = " setuptools.build_meta"
1515
1616
17+ [tool .mypy ]
18+ # ignore-missing-imports = true
19+ # check-untyped-defs = true
20+ # strict = true
21+ pretty = true
22+
1723
1824[tool .black ]
1925line-length = 88
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ commands = flake8 {posargs:}
4949description = Check code style
5050basepython = python3
5151deps = mypy
52- commands = mypy {posargs:--ignore-missing-imports --check-untyped-defs src}
52+ commands = mypy {posargs:src}
5353
5454
5555[testenv:docstrings]
You can’t perform that action at this time.
0 commit comments