10000 mypy annotations (basic) + libvcs update by tony · Pull Request #373 · vcs-python/vcspull · GitHub
[go: up one dir, main page]

Skip to content

mypy annotations (basic) + libvcs update #373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Sep 25, 2022
Prev Previous commit
Next Next commit
ci(mypy) Add mypy config
  • Loading branch information
tony committed Sep 25, 2022
commit 797ac54ce1ab819928e2b38da37311db1059dbb0
10 changes: 10 additions & 0 deletions pyproject.toml 8B3E
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,16 @@ lint = [
"types-colorama",
]

[tool.mypy]
python_version = 3.9
warn_unused_configs = true

[[tool.mypy.overrides]]
module = [
"kaptan.*",
]
ignore_missing_imports = true

[tool.coverage.run]
branch = true
parallel = true
Expand Down
0