Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -2756,6 +2756,12 @@
"fileMatch": ["mycode.json"],
"url": "https://json.schemastore.org/mycode.json"
},
{
"name": "MyPy",
"description": "MyPy, a Python type checker",
"fileMatch": [],
"url": "https://json.schemastore.org/partial-mypy.json"
},
{
"name": "napari plugin manifest",
"description": "a napari plugin manifest",
Expand Down
3 changes: 3 additions & 0 deletions src/negative_test/pyproject/mypy-emptymodule.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[[tool.mypy.overrides]]
module = []
disallow_untyped_defs = true
4 changes: 4 additions & 0 deletions src/negative_test/pyproject/mypy-extra.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# mypy global options:

[tool.mypy]
python_versions = "2.7"
2 changes: 2 additions & 0 deletions src/negative_test/pyproject/mypy-nomodule.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[[tool.mypy.overrides]]
disallow_untyped_defs = true
1 change: 1 addition & 0 deletions src/schema-validation.json
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,7 @@
"externalSchema": [
"cibuildwheel.json",
"hatch.json",
"partial-mypy.json",
"poetry.json",
"ruff.json",
"scikit-build.json",
Expand Down
Loading