@yawlabs/ctxlint 0.25.1 → 0.25.3
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/.pre-commit-hooks.yaml +10 -10
- package/AGENT_SESSION_LINT_SPEC.md +632 -612
- package/AGENT_SKILL_LINT_SPEC.md +20 -18
- package/CONTEXT_LINT_SPEC.md +847 -782
- package/MCP_CONFIG_LINT_SPEC.md +434 -419
- package/README.md +553 -553
- package/agent-session-lint-rules.json +243 -243
- package/bin/ctxlint.mjs +410 -360
- package/context-lint-rules.json +715 -754
- package/dist/index.js +1792 -672
- package/mcp-config-lint-rules.json +45 -162
- package/package.json +5 -4
package/.pre-commit-hooks.yaml
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
- id: ctxlint
|
|
2
|
-
name: ctxlint
|
|
3
|
-
description: Lint AI agent context files against your actual codebase
|
|
4
|
-
# Version-pinned so a checkout at `rev: vX.Y.Z` runs exactly that release
|
|
5
|
-
# of ctxlint — matches the pinning done by `ctxlint init`. release.sh keeps
|
|
6
|
-
# this in sync with package.json on each bump.
|
|
7
|
-
entry: npx @yawlabs/ctxlint@0.25.
|
|
8
|
-
language: node
|
|
9
|
-
always_run: true
|
|
10
|
-
pass_filenames: false
|
|
1
|
+
- id: ctxlint
|
|
2
|
+
name: ctxlint
|
|
3
|
+
description: Lint AI agent context files against your actual codebase
|
|
4
|
+
# Version-pinned so a checkout at `rev: vX.Y.Z` runs exactly that release
|
|
5
|
+
# of ctxlint — matches the pinning done by `ctxlint init`. release.sh keeps
|
|
6
|
+
# this in sync with package.json on each bump.
|
|
7
|
+
entry: npx @yawlabs/ctxlint@0.25.3 --strict
|
|
8
|
+
language: node
|
|
9
|
+
always_run: true
|
|
10
|
+
pass_filenames: false
|