aislop 0.9.1 → 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/dist/cli.js
CHANGED
|
@@ -34,7 +34,7 @@ var __exportAll = (all, no_symbols) => {
|
|
|
34
34
|
|
|
35
35
|
//#endregion
|
|
36
36
|
//#region src/version.ts
|
|
37
|
-
const APP_VERSION = "0.9.
|
|
37
|
+
const APP_VERSION = "0.9.2";
|
|
38
38
|
|
|
39
39
|
//#endregion
|
|
40
40
|
//#region src/telemetry/env.ts
|
|
@@ -1016,7 +1016,7 @@ const filterProjectFiles = (rootDirectory, files, extraExtensions = [], exclude
|
|
|
1016
1016
|
return micromatch.isMatch(relativePath, include, { dot: true });
|
|
1017
1017
|
};
|
|
1018
1018
|
return normalizedFiles.filter(({ absolutePath, relativePath }) => {
|
|
1019
|
-
if (!fs.existsSync(absolutePath) || !isWithinProject(relativePath) || isExcludedPath(relativePath) || isTestFile$2(relativePath) || ignoredPaths.has(relativePath)) return false;
|
|
1019
|
+
if (!fs.existsSync(absolutePath) || !isWithinProject(relativePath) || isExcludedPath(relativePath) || isTestFile$2(relativePath) || isBuildCacheFile(relativePath) || ignoredPaths.has(relativePath)) return false;
|
|
1020
1020
|
if (!isUserIncluded(relativePath)) return false;
|
|
1021
1021
|
if (isUserExcluded(relativePath)) return false;
|
|
1022
1022
|
return hasAllowedExtension(relativePath, extraSet);
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as ENGINE_INFO, r as getEngineLabel, t as APP_VERSION } from "./version-
|
|
1
|
+
import { n as ENGINE_INFO, r as getEngineLabel, t as APP_VERSION } from "./version-C3JZkQGA.js";
|
|
2
2
|
import { n as runSubprocess, t as isToolInstalled } from "./subprocess-CQUJDGgn.js";
|
|
3
3
|
import { r as runGenericLinter, t as fixRubyLint } from "./generic-BrcWMW7E.js";
|
|
4
4
|
import { n as runExpoDoctor } from "./expo-doctor-Bz0LZhQ6.js";
|
|
@@ -729,7 +729,7 @@ const filterProjectFiles = (rootDirectory, files, extraExtensions = [], exclude
|
|
|
729
729
|
return micromatch.isMatch(relativePath, include, { dot: true });
|
|
730
730
|
};
|
|
731
731
|
return normalizedFiles.filter(({ absolutePath, relativePath }) => {
|
|
732
|
-
if (!fs.existsSync(absolutePath) || !isWithinProject(relativePath) || isExcludedPath(relativePath) || isTestFile$2(relativePath) || ignoredPaths.has(relativePath)) return false;
|
|
732
|
+
if (!fs.existsSync(absolutePath) || !isWithinProject(relativePath) || isExcludedPath(relativePath) || isTestFile$2(relativePath) || isBuildCacheFile(relativePath) || ignoredPaths.has(relativePath)) return false;
|
|
733
733
|
if (!isUserIncluded(relativePath)) return false;
|
|
734
734
|
if (isUserExcluded(relativePath)) return false;
|
|
735
735
|
return hasAllowedExtension(relativePath, extraSet);
|
|
@@ -7137,7 +7137,7 @@ const runScanBody = async (resolvedDir, config, options, projectInfo) => {
|
|
|
7137
7137
|
engineTimings
|
|
7138
7138
|
};
|
|
7139
7139
|
if (options.json) {
|
|
7140
|
-
const { buildJsonOutput } = await import("./json-
|
|
7140
|
+
const { buildJsonOutput } = await import("./json-DZHn6AE3.js");
|
|
7141
7141
|
const jsonOut = buildJsonOutput(results, scoreResult, projectInfo.sourceFileCount, elapsedMs);
|
|
7142
7142
|
console.log(JSON.stringify(jsonOut, null, 2));
|
|
7143
7143
|
return completion;
|
package/dist/mcp.js
CHANGED
|
@@ -443,7 +443,7 @@ const filterProjectFiles = (rootDirectory, files, extraExtensions = [], exclude
|
|
|
443
443
|
return micromatch.isMatch(relativePath, include, { dot: true });
|
|
444
444
|
};
|
|
445
445
|
return normalizedFiles.filter(({ absolutePath, relativePath }) => {
|
|
446
|
-
if (!fs.existsSync(absolutePath) || !isWithinProject(relativePath) || isExcludedPath(relativePath) || isTestFile$2(relativePath) || ignoredPaths.has(relativePath)) return false;
|
|
446
|
+
if (!fs.existsSync(absolutePath) || !isWithinProject(relativePath) || isExcludedPath(relativePath) || isTestFile$2(relativePath) || isBuildCacheFile(relativePath) || ignoredPaths.has(relativePath)) return false;
|
|
447
447
|
if (!isUserIncluded(relativePath)) return false;
|
|
448
448
|
if (isUserExcluded(relativePath)) return false;
|
|
449
449
|
return hasAllowedExtension(relativePath, extraSet);
|
|
@@ -5369,7 +5369,7 @@ const handleAislopBaseline = (input) => {
|
|
|
5369
5369
|
|
|
5370
5370
|
//#endregion
|
|
5371
5371
|
//#region src/version.ts
|
|
5372
|
-
const APP_VERSION = "0.9.
|
|
5372
|
+
const APP_VERSION = "0.9.2";
|
|
5373
5373
|
|
|
5374
5374
|
//#endregion
|
|
5375
5375
|
//#region src/telemetry/env.ts
|
|
@@ -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": {
|