Skip to content
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

Improve gitutils.py by using the Github CLI when available #1088

Merged
merged 12 commits into from
Aug 17, 2023
Prev Previous commit
Next Next commit
Improving the VS Code type checking
  • Loading branch information
mdemoret-nv committed Aug 17, 2023
commit 03aa639121cebed9555f6d9f7bc01db14d118f94
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,17 @@ ignore_patterns = [
"**/*.pxd",
]


[tool.mypy]
# Allow None for argument default values
implicit_optional = true


[tool.pyright]
# Allow None for argument default values
strictParameterNoneValue = false


[tool.interrogate]
exclude = ["morpheus/cli"]
ignore-init-method = true
Expand Down