caspian-utils 0.1.22 → 0.1.23

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.
@@ -67,7 +67,9 @@ testpaths = ["tests"]
67
67
  addopts = "-q"
68
68
 
69
69
  [tool.ruff]
70
- include = ["main.py", "src/**/*.py", "tests/**/*.py", "settings/check.py"]
70
+ # `settings/*.py` (not just `settings/check.py`) so every orchestrator script —
71
+ # `check.py`, `fix.py`, `_component_imports.py` — is linted, not just the entrypoint.
72
+ include = ["main.py", "src/**/*.py", "tests/**/*.py", "settings/*.py"]
71
73
  extend-exclude = [".venv", "node_modules"]
72
74
 
73
75
  [tool.ruff.lint]
@@ -82,9 +84,11 @@ include = ["main.py", "src"]
82
84
  exclude = [".venv", "node_modules", "**/__pycache__"]
83
85
  # `basic` is Pylance's default mode. It catches reportArgumentType-style bugs
84
86
  # (e.g. passing a dict[str, str | None] to a TypedDict whose field is `str`)
85
- # without flooding the gate with strict-mode noise. Subject the generated Prisma
86
- # Python ORM under `src/lib/prisma/**` to its own exclusion so its
87
- # Optional-everywhere models do not dominate the gate.
87
+ # without flooding the gate with strict-mode noise. Note this `include`/`exclude`
88
+ # pair analyzes everything under `src`, including the generated Prisma Python ORM
89
+ # in `src/lib/prisma/**`; `basic` mode (plus the optional suppressions below)
90
+ # keeps its Optional-everywhere models from dominating the gate. If that ORM still
91
+ # produces too much noise, add `"src/lib/prisma"` to `exclude` explicitly.
88
92
  pythonPlatform = "Windows" # or Linux/Darwin to match the deploy target
89
93
  typeCheckingMode = "basic"
90
94
  # Mirror suppressions from older pyrefly-based setups if you migrated; otherwise
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "caspian-utils",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Caspian tooling",
5
5
  "main": "index.js",
6
6
  "scripts": {