We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adde256 commit d6f38adCopy full SHA for d6f38ad
.github/workflows/lint.yml
@@ -62,9 +62,9 @@ jobs:
62
- name: Install dependencies
63
run: |
64
python -m pip install --upgrade pip
65
- python -m pip install --upgrade "mypy==1.8.0" docutils-stubs types-requests
+ python -m pip install ".[lint,test]"
66
- name: Type check with mypy
67
- run: mypy sphinx/
+ run: mypy
68
69
docs-lint:
70
runs-on: ubuntu-latest
pyproject.toml
@@ -130,6 +130,7 @@ exclude = [
130
]
131
132
[tool.mypy]
133
+files = ["sphinx"]
134
check_untyped_defs = true
135
disallow_incomplete_defs = true
136
follow_imports = "skip"
0 commit comments