caspian-utils 0.1.24 → 0.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/docs/testing.md +2 -1
- package/package.json +1 -1
package/dist/docs/testing.md
CHANGED
|
@@ -80,7 +80,8 @@ ignore = ["E501"]
|
|
|
80
80
|
[tool.pyright]
|
|
81
81
|
# Pylance (the VS Code Python extension) reads this same config, so the editor
|
|
82
82
|
# and `npm run check` report the same thing instead of disagreeing.
|
|
83
|
-
|
|
83
|
+
# `settings/*.py` is included so the orchestrator scripts are type-checked too.
|
|
84
|
+
include = ["main.py", "src", "settings/*.py"]
|
|
84
85
|
exclude = [".venv", "node_modules", "**/__pycache__"]
|
|
85
86
|
# `basic` is Pylance's default mode. It catches reportArgumentType-style bugs
|
|
86
87
|
# (e.g. passing a dict[str, str | None] to a TypedDict whose field is `str`)
|