aislop 0.9.0 → 0.9.2
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/README.md +1 -0
- package/dist/cli.js +662 -180
- package/dist/index.d.ts +4 -0
- package/dist/index.js +615 -164
- package/dist/{json-DZfGz2xa.js → json-DZHn6AE3.js} +1 -1
- package/dist/mcp.js +422 -148
- package/dist/{version-D_rqBdyj.js → version-C3JZkQGA.js} +1 -1
- package/package.json +2 -1
|
@@ -29,7 +29,7 @@ const getEngineLabel = (engine) => ENGINE_INFO[engine].label;
|
|
|
29
29
|
|
|
30
30
|
//#endregion
|
|
31
31
|
//#region src/version.ts
|
|
32
|
-
const APP_VERSION = "0.9.
|
|
32
|
+
const APP_VERSION = "0.9.2";
|
|
33
33
|
|
|
34
34
|
//#endregion
|
|
35
35
|
export { ENGINE_INFO as n, getEngineLabel as r, APP_VERSION as t };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aislop",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "The engineering standards layer and quality gate for AI-written code. Define your standard once. Every agent — Claude Code, Cursor, Codex — is held to it automatically, on every edit and every PR. Catches the slop they leave behind, enforces the rules your team sets. 8+ languages. Deterministic.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"test": "pnpm build && vitest run",
|
|
26
26
|
"scan": "pnpm build && node dist/cli.js scan .",
|
|
27
27
|
"scan:exclude": "pnpm build && node dist/cli.js scan . --exclude .idea --exclude .gitnore --exclude node_modules",
|
|
28
|
+
"scan:include": "pnpm build && node dist/cli.js scan . --include src --include tests",
|
|
28
29
|
"scan:json": "pnpm build && node dist/cli.js scan . --json",
|
|
29
30
|
"quality": "pnpm typecheck && pnpm test && node dist/cli.js scan . --json"
|
|
30
31
|
},
|