aislop 0.6.0 → 0.6.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 +54 -1
- package/dist/cli.js +4194 -3838
- package/dist/index.d.ts +2 -0
- package/dist/index.js +434 -282
- package/dist/{json-DcE9soYJ.js → json-ZItDVIZL.js} +1 -1
- package/dist/{version-C2lM_2fE.js → version-AmNwcw_U.js} +1 -5
- package/package.json +4 -1
|
@@ -29,11 +29,7 @@ const getEngineLabel = (engine) => ENGINE_INFO[engine].label;
|
|
|
29
29
|
|
|
30
30
|
//#endregion
|
|
31
31
|
//#region src/version.ts
|
|
32
|
-
|
|
33
|
-
* Application version — injected at build time by tsdown from package.json.
|
|
34
|
-
* The fallback should always match the "version" field in package.json.
|
|
35
|
-
*/
|
|
36
|
-
const APP_VERSION = "0.6.0";
|
|
32
|
+
const APP_VERSION = "0.6.2";
|
|
37
33
|
|
|
38
34
|
//#endregion
|
|
39
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.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "Stop AI slop from shipping. A unified code quality CLI that catches the lazy patterns AI coding tools leave behind.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"typecheck": "tsc --noEmit",
|
|
24
24
|
"test": "pnpm build && vitest run",
|
|
25
25
|
"scan": "pnpm build && node dist/cli.js scan .",
|
|
26
|
+
"scan:exclude": "pnpm build && node dist/cli.js scan . --exclude .idea --exclude .gitnore --exclude node_modules",
|
|
26
27
|
"scan:json": "pnpm build && node dist/cli.js scan . --json",
|
|
27
28
|
"quality": "pnpm typecheck && pnpm test && node dist/cli.js scan . --json"
|
|
28
29
|
},
|
|
@@ -66,6 +67,7 @@
|
|
|
66
67
|
"commander": "^14.0.3",
|
|
67
68
|
"expo-doctor": "^1.18.10",
|
|
68
69
|
"knip": "^5.85.0",
|
|
70
|
+
"micromatch": "^4.0.8",
|
|
69
71
|
"oxlint": "^1.51.0",
|
|
70
72
|
"picocolors": "^1.1.1",
|
|
71
73
|
"tar": "^7.5.11",
|
|
@@ -75,6 +77,7 @@
|
|
|
75
77
|
"zod": "^4.3.6"
|
|
76
78
|
},
|
|
77
79
|
"devDependencies": {
|
|
80
|
+
"@types/micromatch": "^4.0.10",
|
|
78
81
|
"@types/node": "^25.6.0",
|
|
79
82
|
"tsdown": "^0.20.3",
|
|
80
83
|
"vitest": "^4.0.18"
|