@aicqtools/core 1.0.0-alpha.7 → 1.0.0-alpha.9
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/config/index.d.ts +2 -2
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +1 -1
- package/dist/config/index.js.map +1 -1
- package/dist/config/schema.d.ts +93 -15
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +33 -6
- package/dist/config/schema.js.map +1 -1
- package/dist/i18n/messages.d.ts +2 -0
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/i18n/messages.js +2 -0
- package/dist/i18n/messages.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/config/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { loadConfig, findConfigPath } from './loader.js';
|
|
2
|
-
export { aicqConfigSchema, DEFAULT_EXCLUDE } from './schema.js';
|
|
3
|
-
export type { AicqConfig } from './schema.js';
|
|
2
|
+
export { aicqConfigSchema, DEFAULT_EXCLUDE, ruleOverrideSchema } from './schema.js';
|
|
3
|
+
export type { AicqConfig, RuleOverride } from './schema.js';
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACpF,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/config/index.js
CHANGED
package/dist/config/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -10,21 +10,57 @@ export declare const localeSchema: z.ZodDefault<z.ZodEnum<["ko", "en"]>>;
|
|
|
10
10
|
* `camelcase-migration-column` and seeder lints must still see those files.
|
|
11
11
|
*/
|
|
12
12
|
export declare const DEFAULT_EXCLUDE: readonly string[];
|
|
13
|
+
/**
|
|
14
|
+
* Per-path rule overrides (alpha.8). Behaves like ESLint's `overrides`: each entry matches a list
|
|
15
|
+
* of micromatch globs against the file path and applies its `rules` map on top of the global one.
|
|
16
|
+
* Multiple matching entries are merged in declaration order — later entries win for the same rule.
|
|
17
|
+
* `off` drops the rule for that file; `warn`/`error` overrides its severity. Unknown rule ids are
|
|
18
|
+
* collected and reported via stderr once, so config typos surface early instead of silently no-op'ing.
|
|
19
|
+
*/
|
|
20
|
+
export declare const ruleOverrideSchema: z.ZodObject<{
|
|
21
|
+
paths: z.ZodArray<z.ZodString, "many">;
|
|
22
|
+
rules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<"off">, z.ZodLiteral<"warn">, z.ZodLiteral<"error">]>>>;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
paths: string[];
|
|
25
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
26
|
+
}, {
|
|
27
|
+
paths: string[];
|
|
28
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
29
|
+
}>;
|
|
30
|
+
export type RuleOverride = z.infer<typeof ruleOverrideSchema>;
|
|
13
31
|
export declare const guardrailModuleSchema: z.ZodDefault<z.ZodObject<{
|
|
14
32
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
15
33
|
rulesDir: z.ZodDefault<z.ZodString>;
|
|
16
34
|
extends: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
17
35
|
rules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<"off">, z.ZodLiteral<"warn">, z.ZodLiteral<"error">]>>>;
|
|
36
|
+
overrides: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
37
|
+
paths: z.ZodArray<z.ZodString, "many">;
|
|
38
|
+
rules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<"off">, z.ZodLiteral<"warn">, z.ZodLiteral<"error">]>>>;
|
|
39
|
+
}, "strip", z.ZodTypeAny, {
|
|
40
|
+
paths: string[];
|
|
41
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
42
|
+
}, {
|
|
43
|
+
paths: string[];
|
|
44
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
45
|
+
}>, "many">>;
|
|
18
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
19
48
|
enabled: boolean;
|
|
20
49
|
rulesDir: string;
|
|
21
50
|
extends: string[];
|
|
22
|
-
|
|
51
|
+
overrides: {
|
|
52
|
+
paths: string[];
|
|
53
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
54
|
+
}[];
|
|
23
55
|
}, {
|
|
56
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
24
57
|
enabled?: boolean | undefined;
|
|
25
58
|
rulesDir?: string | undefined;
|
|
26
59
|
extends?: string[] | undefined;
|
|
27
|
-
|
|
60
|
+
overrides?: {
|
|
61
|
+
paths: string[];
|
|
62
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
63
|
+
}[] | undefined;
|
|
28
64
|
}>>;
|
|
29
65
|
export declare const provenanceModuleSchema: z.ZodDefault<z.ZodObject<{
|
|
30
66
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -52,28 +88,54 @@ export declare const aicqConfigSchema: z.ZodObject<{
|
|
|
52
88
|
include: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
53
89
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
54
90
|
/**
|
|
55
|
-
*
|
|
56
|
-
* effective exclude list
|
|
57
|
-
*
|
|
58
|
-
*
|
|
91
|
+
* Controls whether the file walker appends entries from the repo-root `.gitignore` to the
|
|
92
|
+
* effective exclude list (alpha.9). Three values:
|
|
93
|
+
*
|
|
94
|
+
* - `'auto'` (default): enabled when a `.gitignore` is present at the repo root, otherwise
|
|
95
|
+
* disabled. This is the friendly default for the common case where a developer's git-ignored
|
|
96
|
+
* directories are exactly the noise they don't want aicqtools to scan.
|
|
97
|
+
* - `true`: force-enable (legacy boolean opt-in).
|
|
98
|
+
* - `false`: force-disable (legacy boolean opt-out).
|
|
99
|
+
*
|
|
100
|
+
* CLI flags `--gitignore` / `--no-gitignore` override config for a single run.
|
|
101
|
+
*
|
|
102
|
+
* Only the root `.gitignore` is honored; nested gitignore files are left for a future release.
|
|
59
103
|
*/
|
|
60
|
-
respectGitignore: z.ZodDefault<z.ZodBoolean
|
|
104
|
+
respectGitignore: z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodLiteral<"auto">]>>;
|
|
61
105
|
modules: z.ZodDefault<z.ZodObject<{
|
|
62
106
|
guardrail: z.ZodDefault<z.ZodObject<{
|
|
63
107
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
64
108
|
rulesDir: z.ZodDefault<z.ZodString>;
|
|
65
109
|
extends: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
66
110
|
rules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<"off">, z.ZodLiteral<"warn">, z.ZodLiteral<"error">]>>>;
|
|
111
|
+
overrides: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
112
|
+
paths: z.ZodArray<z.ZodString, "many">;
|
|
113
|
+
rules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<"off">, z.ZodLiteral<"warn">, z.ZodLiteral<"error">]>>>;
|
|
114
|
+
}, "strip", z.ZodTypeAny, {
|
|
115
|
+
paths: string[];
|
|
116
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
117
|
+
}, {
|
|
118
|
+
paths: string[];
|
|
119
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
120
|
+
}>, "many">>;
|
|
67
121
|
}, "strip", z.ZodTypeAny, {
|
|
122
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
68
123
|
enabled: boolean;
|
|
69
124
|
rulesDir: string;
|
|
70
125
|
extends: string[];
|
|
71
|
-
|
|
126
|
+
overrides: {
|
|
127
|
+
paths: string[];
|
|
128
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
129
|
+
}[];
|
|
72
130
|
}, {
|
|
131
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
73
132
|
enabled?: boolean | undefined;
|
|
74
133
|
rulesDir?: string | undefined;
|
|
75
134
|
extends?: string[] | undefined;
|
|
76
|
-
|
|
135
|
+
overrides?: {
|
|
136
|
+
paths: string[];
|
|
137
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
138
|
+
}[] | undefined;
|
|
77
139
|
}>>;
|
|
78
140
|
provenance: z.ZodDefault<z.ZodObject<{
|
|
79
141
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -97,10 +159,14 @@ export declare const aicqConfigSchema: z.ZodObject<{
|
|
|
97
159
|
}>>;
|
|
98
160
|
}, "strip", z.ZodTypeAny, {
|
|
99
161
|
guardrail: {
|
|
162
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
100
163
|
enabled: boolean;
|
|
101
164
|
rulesDir: string;
|
|
102
165
|
extends: string[];
|
|
103
|
-
|
|
166
|
+
overrides: {
|
|
167
|
+
paths: string[];
|
|
168
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
169
|
+
}[];
|
|
104
170
|
};
|
|
105
171
|
provenance: {
|
|
106
172
|
enabled: boolean;
|
|
@@ -112,10 +178,14 @@ export declare const aicqConfigSchema: z.ZodObject<{
|
|
|
112
178
|
};
|
|
113
179
|
}, {
|
|
114
180
|
guardrail?: {
|
|
181
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
115
182
|
enabled?: boolean | undefined;
|
|
116
183
|
rulesDir?: string | undefined;
|
|
117
184
|
extends?: string[] | undefined;
|
|
118
|
-
|
|
185
|
+
overrides?: {
|
|
186
|
+
paths: string[];
|
|
187
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
188
|
+
}[] | undefined;
|
|
119
189
|
} | undefined;
|
|
120
190
|
provenance?: {
|
|
121
191
|
enabled?: boolean | undefined;
|
|
@@ -130,13 +200,17 @@ export declare const aicqConfigSchema: z.ZodObject<{
|
|
|
130
200
|
locale: "ko" | "en";
|
|
131
201
|
include: string[];
|
|
132
202
|
exclude: string[];
|
|
133
|
-
respectGitignore: boolean;
|
|
203
|
+
respectGitignore: boolean | "auto";
|
|
134
204
|
modules: {
|
|
135
205
|
guardrail: {
|
|
206
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
136
207
|
enabled: boolean;
|
|
137
208
|
rulesDir: string;
|
|
138
209
|
extends: string[];
|
|
139
|
-
|
|
210
|
+
overrides: {
|
|
211
|
+
paths: string[];
|
|
212
|
+
rules: Record<string, "error" | "off" | "warn">;
|
|
213
|
+
}[];
|
|
140
214
|
};
|
|
141
215
|
provenance: {
|
|
142
216
|
enabled: boolean;
|
|
@@ -153,13 +227,17 @@ export declare const aicqConfigSchema: z.ZodObject<{
|
|
|
153
227
|
locale?: "ko" | "en" | undefined;
|
|
154
228
|
include?: string[] | undefined;
|
|
155
229
|
exclude?: string[] | undefined;
|
|
156
|
-
respectGitignore?: boolean | undefined;
|
|
230
|
+
respectGitignore?: boolean | "auto" | undefined;
|
|
157
231
|
modules?: {
|
|
158
232
|
guardrail?: {
|
|
233
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
159
234
|
enabled?: boolean | undefined;
|
|
160
235
|
rulesDir?: string | undefined;
|
|
161
236
|
extends?: string[] | undefined;
|
|
162
|
-
|
|
237
|
+
overrides?: {
|
|
238
|
+
paths: string[];
|
|
239
|
+
rules?: Record<string, "error" | "off" | "warn"> | undefined;
|
|
240
|
+
}[] | undefined;
|
|
163
241
|
} | undefined;
|
|
164
242
|
provenance?: {
|
|
165
243
|
enabled?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,YAAY,uCAAqC,CAAC;AAE/D;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe,EAAE,SAAS,MAAM,
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,YAAY,uCAAqC,CAAC;AAE/D;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe,EAAE,SAAS,MAAM,EA8C3C,CAAC;AAIH;;;;;;GAMG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAQpB,CAAC;AAEf,eAAO,MAAM,sBAAsB;;;;;;;;;;;;GAMrB,CAAC;AAEf,eAAO,MAAM,uBAAuB;;;;;;GAItB,CAAC;AAEf,eAAO,MAAM,gBAAgB;;;;;IAK3B;;;;;;;;;;;;;OAaG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASH,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
|
package/dist/config/schema.js
CHANGED
|
@@ -46,16 +46,35 @@ export const DEFAULT_EXCLUDE = Object.freeze([
|
|
|
46
46
|
'**/.mypy_cache/**',
|
|
47
47
|
'**/.pytest_cache/**',
|
|
48
48
|
'**/vendor/**',
|
|
49
|
+
// Precise public/ build-output paths (alpha.9). We keep `**/public/**` itself live because
|
|
50
|
+
// hand-written assets (e.g. Capacitor's `public/native-bridge.js`) belong there. Drop only the
|
|
51
|
+
// narrowly named build subdirs that frameworks emit copies into.
|
|
52
|
+
'**/public/_next/**',
|
|
53
|
+
'**/public/static/**',
|
|
54
|
+
'**/public/build/**',
|
|
49
55
|
// Minified / pre-bundled output guard (one minified file flips no-magic-number into the thousands)
|
|
50
56
|
'**/*.min.js',
|
|
51
57
|
'**/*.bundle.js',
|
|
52
58
|
]);
|
|
59
|
+
const ruleLevelSchema = z.union([z.literal('off'), z.literal('warn'), z.literal('error')]);
|
|
60
|
+
/**
|
|
61
|
+
* Per-path rule overrides (alpha.8). Behaves like ESLint's `overrides`: each entry matches a list
|
|
62
|
+
* of micromatch globs against the file path and applies its `rules` map on top of the global one.
|
|
63
|
+
* Multiple matching entries are merged in declaration order — later entries win for the same rule.
|
|
64
|
+
* `off` drops the rule for that file; `warn`/`error` overrides its severity. Unknown rule ids are
|
|
65
|
+
* collected and reported via stderr once, so config typos surface early instead of silently no-op'ing.
|
|
66
|
+
*/
|
|
67
|
+
export const ruleOverrideSchema = z.object({
|
|
68
|
+
paths: z.array(z.string().min(1)).min(1),
|
|
69
|
+
rules: z.record(ruleLevelSchema).default({}),
|
|
70
|
+
});
|
|
53
71
|
export const guardrailModuleSchema = z
|
|
54
72
|
.object({
|
|
55
73
|
enabled: z.boolean().default(true),
|
|
56
74
|
rulesDir: z.string().default('aicq/rules'),
|
|
57
75
|
extends: z.array(z.string()).default([]),
|
|
58
|
-
rules: z.record(
|
|
76
|
+
rules: z.record(ruleLevelSchema).default({}),
|
|
77
|
+
overrides: z.array(ruleOverrideSchema).default([]),
|
|
59
78
|
})
|
|
60
79
|
.default({});
|
|
61
80
|
export const provenanceModuleSchema = z
|
|
@@ -76,12 +95,20 @@ export const aicqConfigSchema = z.object({
|
|
|
76
95
|
include: z.array(z.string()).default(['**/*.{ts,tsx,js,mjs,cjs,jsx,py}']),
|
|
77
96
|
exclude: z.array(z.string()).default([...DEFAULT_EXCLUDE]),
|
|
78
97
|
/**
|
|
79
|
-
*
|
|
80
|
-
* effective exclude list
|
|
81
|
-
*
|
|
82
|
-
*
|
|
98
|
+
* Controls whether the file walker appends entries from the repo-root `.gitignore` to the
|
|
99
|
+
* effective exclude list (alpha.9). Three values:
|
|
100
|
+
*
|
|
101
|
+
* - `'auto'` (default): enabled when a `.gitignore` is present at the repo root, otherwise
|
|
102
|
+
* disabled. This is the friendly default for the common case where a developer's git-ignored
|
|
103
|
+
* directories are exactly the noise they don't want aicqtools to scan.
|
|
104
|
+
* - `true`: force-enable (legacy boolean opt-in).
|
|
105
|
+
* - `false`: force-disable (legacy boolean opt-out).
|
|
106
|
+
*
|
|
107
|
+
* CLI flags `--gitignore` / `--no-gitignore` override config for a single run.
|
|
108
|
+
*
|
|
109
|
+
* Only the root `.gitignore` is honored; nested gitignore files are left for a future release.
|
|
83
110
|
*/
|
|
84
|
-
respectGitignore: z.boolean().default(
|
|
111
|
+
respectGitignore: z.union([z.boolean(), z.literal('auto')]).default('auto'),
|
|
85
112
|
modules: z
|
|
86
113
|
.object({
|
|
87
114
|
guardrail: guardrailModuleSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;AAE/D;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,eAAe,GAAsB,MAAM,CAAC,MAAM,CAAC;IAC9D,gEAAgE;IAChE,oBAAoB;IACpB,YAAY;IACZ,cAAc;IACd,aAAa;IACb,sFAAsF;IACtF,WAAW;IACX,aAAa;IACb,aAAa;IACb,mBAAmB;IACnB,cAAc;IACd,mBAAmB;IACnB,uBAAuB;IACvB,2BAA2B;IAC3B,eAAe;IACf,gBAAgB;IAChB,aAAa;IACb,cAAc;IACd,qBAAqB;IACrB,2CAA2C;IAC3C,gBAAgB;IAChB,mBAAmB;IACnB,wBAAwB;IACxB,2FAA2F;IAC3F,iGAAiG;IACjG,yBAAyB;IACzB,0CAA0C;IAC1C,gCAAgC;IAChC,gCAAgC;IAChC,mBAAmB;IACnB,aAAa;IACb,YAAY;IACZ,YAAY;IACZ,mBAAmB;IACnB,qBAAqB;IACrB,cAAc;IACd,mGAAmG;IACnG,aAAa;IACb,gBAAgB;CACjB,CAAC,CAAC;AAEH,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;AAE/D;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,eAAe,GAAsB,MAAM,CAAC,MAAM,CAAC;IAC9D,gEAAgE;IAChE,oBAAoB;IACpB,YAAY;IACZ,cAAc;IACd,aAAa;IACb,sFAAsF;IACtF,WAAW;IACX,aAAa;IACb,aAAa;IACb,mBAAmB;IACnB,cAAc;IACd,mBAAmB;IACnB,uBAAuB;IACvB,2BAA2B;IAC3B,eAAe;IACf,gBAAgB;IAChB,aAAa;IACb,cAAc;IACd,qBAAqB;IACrB,2CAA2C;IAC3C,gBAAgB;IAChB,mBAAmB;IACnB,wBAAwB;IACxB,2FAA2F;IAC3F,iGAAiG;IACjG,yBAAyB;IACzB,0CAA0C;IAC1C,gCAAgC;IAChC,gCAAgC;IAChC,mBAAmB;IACnB,aAAa;IACb,YAAY;IACZ,YAAY;IACZ,mBAAmB;IACnB,qBAAqB;IACrB,cAAc;IACd,2FAA2F;IAC3F,+FAA+F;IAC/F,iEAAiE;IACjE,oBAAoB;IACpB,qBAAqB;IACrB,oBAAoB;IACpB,mGAAmG;IACnG,aAAa;IACb,gBAAgB;CACjB,CAAC,CAAC;AAEH,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;AAE3F;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IACxC,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;CAC7C,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC;KACnC,MAAM,CAAC;IACN,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IAClC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC;IAC1C,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;IACxC,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;IAC5C,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;CACnD,CAAC;KACD,OAAO,CAAC,EAAE,CAAC,CAAC;AAEf,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;IACnC,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACzC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC;CAC9C,CAAC;KACD,OAAO,CAAC,EAAE,CAAC,CAAC;AAEf,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;CACpC,CAAC;KACD,OAAO,CAAC,EAAE,CAAC,CAAC;AAEf,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,MAAM,EAAE,YAAY;IACpB,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,CAAC,iCAAiC,CAAC,CAAC;IACzE,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,eAAe,CAAC,CAAC;IAC1D;;;;;;;;;;;;;OAaG;IACH,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC;IAC3E,OAAO,EAAE,CAAC;SACP,MAAM,CAAC;QACN,SAAS,EAAE,qBAAqB;QAChC,UAAU,EAAE,sBAAsB;QAClC,WAAW,EAAE,uBAAuB;KACrC,CAAC;SACD,OAAO,CAAC,EAAE,CAAC;CACf,CAAC,CAAC"}
|
package/dist/i18n/messages.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export declare const messages: {
|
|
|
19
19
|
readonly 'cli.check.parserFailed': "parser failed on {file}: {message}";
|
|
20
20
|
readonly 'cli.check.largeScanHint': "hint: {files} files scanned and no aicq.config.yaml was found. Consider adding a config to scope `include`/`exclude`, or set `respectGitignore: true`. Run `aicq rules suggest` for a starting point.";
|
|
21
21
|
readonly 'cli.check.unknownRuleId': "aicq.config.yaml references unknown rule `{id}` — ignored.";
|
|
22
|
+
readonly 'cli.check.unknownRuleIdInOverride': "aicq.config.yaml overrides[{index}] references unknown rule `{id}` (paths: {paths}) — ignored.";
|
|
22
23
|
readonly 'cli.check.noisyRuleHint': "hint: `{id}` fired {count} times. Consider setting `{id}: off` under `modules.guardrail.rules` in aicq.config.yaml, or narrow it with project-specific tuning.";
|
|
23
24
|
readonly 'cli.rules.suggest.header': "{files} files scanned ({langs}), {ms}ms";
|
|
24
25
|
readonly 'cli.rules.suggest.tableHeader': "rule hits severity message";
|
|
@@ -46,6 +47,7 @@ export declare const messages: {
|
|
|
46
47
|
readonly 'cli.check.parserFailed': "{file} 파서 실패: {message}";
|
|
47
48
|
readonly 'cli.check.largeScanHint': "안내: {files}개 파일을 스캔했고 aicq.config.yaml이 없습니다. `include`/`exclude` 범위를 좁히는 config 작성 또는 `respectGitignore: true` 설정을 검토하세요. 시작점은 `aicq rules suggest`.";
|
|
48
49
|
readonly 'cli.check.unknownRuleId': "aicq.config.yaml에서 알 수 없는 룰 `{id}` 참조 — 무시함.";
|
|
50
|
+
readonly 'cli.check.unknownRuleIdInOverride': "aicq.config.yaml overrides[{index}]에서 알 수 없는 룰 `{id}` 참조 (paths: {paths}) — 무시함.";
|
|
49
51
|
readonly 'cli.check.noisyRuleHint': "안내: `{id}`이(가) {count}회 적중했습니다. aicq.config.yaml의 `modules.guardrail.rules`에 `{id}: off` 또는 프로젝트별 튜닝을 검토하세요.";
|
|
50
52
|
readonly 'cli.rules.suggest.header': "파일 {files}개 검사 ({langs}), {ms}ms";
|
|
51
53
|
readonly 'cli.rules.suggest.tableHeader': "룰 적중 심각도 메시지";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,MAAM,MAAM,GAAG,IAAI,GAAG,IAAI,CAAC;AAEjC,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,MAAM,MAAM,GAAG,IAAI,GAAG,IAAI,CAAC;AAEjC,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmEX,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,QAAQ,CAAC,EAAE,CAAC"}
|
package/dist/i18n/messages.js
CHANGED
|
@@ -18,6 +18,7 @@ export const messages = {
|
|
|
18
18
|
'cli.check.parserFailed': 'parser failed on {file}: {message}',
|
|
19
19
|
'cli.check.largeScanHint': 'hint: {files} files scanned and no aicq.config.yaml was found. Consider adding a config to scope `include`/`exclude`, or set `respectGitignore: true`. Run `aicq rules suggest` for a starting point.',
|
|
20
20
|
'cli.check.unknownRuleId': 'aicq.config.yaml references unknown rule `{id}` — ignored.',
|
|
21
|
+
'cli.check.unknownRuleIdInOverride': 'aicq.config.yaml overrides[{index}] references unknown rule `{id}` (paths: {paths}) — ignored.',
|
|
21
22
|
'cli.check.noisyRuleHint': 'hint: `{id}` fired {count} times. Consider setting `{id}: off` under `modules.guardrail.rules` in aicq.config.yaml, or narrow it with project-specific tuning.',
|
|
22
23
|
'cli.rules.suggest.header': '{files} files scanned ({langs}), {ms}ms',
|
|
23
24
|
'cli.rules.suggest.tableHeader': 'rule hits severity message',
|
|
@@ -45,6 +46,7 @@ export const messages = {
|
|
|
45
46
|
'cli.check.parserFailed': '{file} 파서 실패: {message}',
|
|
46
47
|
'cli.check.largeScanHint': '안내: {files}개 파일을 스캔했고 aicq.config.yaml이 없습니다. `include`/`exclude` 범위를 좁히는 config 작성 또는 `respectGitignore: true` 설정을 검토하세요. 시작점은 `aicq rules suggest`.',
|
|
47
48
|
'cli.check.unknownRuleId': 'aicq.config.yaml에서 알 수 없는 룰 `{id}` 참조 — 무시함.',
|
|
49
|
+
'cli.check.unknownRuleIdInOverride': 'aicq.config.yaml overrides[{index}]에서 알 수 없는 룰 `{id}` 참조 (paths: {paths}) — 무시함.',
|
|
48
50
|
'cli.check.noisyRuleHint': '안내: `{id}`이(가) {count}회 적중했습니다. aicq.config.yaml의 `modules.guardrail.rules`에 `{id}: off` 또는 프로젝트별 튜닝을 검토하세요.',
|
|
49
51
|
'cli.rules.suggest.header': '파일 {files}개 검사 ({langs}), {ms}ms',
|
|
50
52
|
'cli.rules.suggest.tableHeader': '룰 적중 심각도 메시지',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.js","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,EAAE,EAAE;QACF,mBAAmB,EAAE,wDAAwD;QAC7E,wBAAwB,EAAE,gBAAgB;QAC1C,2BAA2B,EAAE,2BAA2B;QACxD,kBAAkB,EAAE,iBAAiB;QACrC,yBAAyB,EAAE,6BAA6B;QACxD,wBAAwB,EAAE,wDAAwD;QAClF,+BAA+B,EAAE,4CAA4C;QAC7E,oBAAoB,EAAE,6CAA6C;QACnE,mBAAmB,EAAE,uBAAuB;QAC5C,wBAAwB,EAAE,oCAAoC;QAC9D,yBAAyB,EACvB,uMAAuM;QACzM,yBAAyB,EAAE,4DAA4D;QACvF,yBAAyB,EACvB,gKAAgK;QAClK,0BAA0B,EAAE,yCAAyC;QACrE,+BAA+B,EAAE,+BAA+B;QAChE,wBAAwB,EAAE,yDAAyD;QACnF,iCAAiC,EAAE,wBAAwB;QAC3D,8BAA8B,EAAE,0BAA0B;QAC1D,kCAAkC,EAAE,eAAe;QACnD,6BAA6B,EAAE,wDAAwD;QACvF,uCAAuC,EAAE,uEAAuE;QAChH,iCAAiC,EAC/B,qQAAqQ;QACvQ,uCAAuC,EACrC,0FAA0F;QAC5F,qCAAqC,EAAE,cAAc;QACrD,2BAA2B,EAAE,uCAAuC;KACrE;IACD,EAAE,EAAE;QACF,mBAAmB,EAAE,6CAA6C;QAClE,wBAAwB,EAAE,QAAQ;QAClC,2BAA2B,EAAE,iBAAiB;QAC9C,kBAAkB,EAAE,aAAa;QACjC,yBAAyB,EAAE,kBAAkB;QAC7C,wBAAwB,EAAE,oDAAoD;QAC9E,+BAA+B,EAAE,+BAA+B;QAChE,oBAAoB,EAAE,gCAAgC;QACtD,mBAAmB,EAAE,oBAAoB;QACzC,wBAAwB,EAAE,yBAAyB;QACnD,yBAAyB,EACvB,uJAAuJ;QACzJ,yBAAyB,EAAE,8CAA8C;QACzE,yBAAyB,EACvB,8GAA8G;QAChH,0BAA0B,EAAE,kCAAkC;QAC9D,+BAA+B,EAAE,iBAAiB;QAClD,wBAAwB,EAAE,mCAAmC;QAC7D,iCAAiC,EAAE,gBAAgB;QACnD,8BAA8B,EAAE,uBAAuB;QACvD,kCAAkC,EAAE,SAAS;QAC7C,6BAA6B,EAAE,mCAAmC;QAClE,uCAAuC,EAAE,yCAAyC;QAClF,iCAAiC,EAC/B,mKAAmK;QACrK,uCAAuC,EACrC,2CAA2C;QAC7C,qCAAqC,EAAE,KAAK;QAC5C,2BAA2B,EAAE,yBAAyB;KACvD;CACO,CAAC"}
|
|
1
|
+
{"version":3,"file":"messages.js","sourceRoot":"","sources":["../../src/i18n/messages.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,EAAE,EAAE;QACF,mBAAmB,EAAE,wDAAwD;QAC7E,wBAAwB,EAAE,gBAAgB;QAC1C,2BAA2B,EAAE,2BAA2B;QACxD,kBAAkB,EAAE,iBAAiB;QACrC,yBAAyB,EAAE,6BAA6B;QACxD,wBAAwB,EAAE,wDAAwD;QAClF,+BAA+B,EAAE,4CAA4C;QAC7E,oBAAoB,EAAE,6CAA6C;QACnE,mBAAmB,EAAE,uBAAuB;QAC5C,wBAAwB,EAAE,oCAAoC;QAC9D,yBAAyB,EACvB,uMAAuM;QACzM,yBAAyB,EAAE,4DAA4D;QACvF,mCAAmC,EACjC,gGAAgG;QAClG,yBAAyB,EACvB,gKAAgK;QAClK,0BAA0B,EAAE,yCAAyC;QACrE,+BAA+B,EAAE,+BAA+B;QAChE,wBAAwB,EAAE,yDAAyD;QACnF,iCAAiC,EAAE,wBAAwB;QAC3D,8BAA8B,EAAE,0BAA0B;QAC1D,kCAAkC,EAAE,eAAe;QACnD,6BAA6B,EAAE,wDAAwD;QACvF,uCAAuC,EAAE,uEAAuE;QAChH,iCAAiC,EAC/B,qQAAqQ;QACvQ,uCAAuC,EACrC,0FAA0F;QAC5F,qCAAqC,EAAE,cAAc;QACrD,2BAA2B,EAAE,uCAAuC;KACrE;IACD,EAAE,EAAE;QACF,mBAAmB,EAAE,6CAA6C;QAClE,wBAAwB,EAAE,QAAQ;QAClC,2BAA2B,EAAE,iBAAiB;QAC9C,kBAAkB,EAAE,aAAa;QACjC,yBAAyB,EAAE,kBAAkB;QAC7C,wBAAwB,EAAE,oDAAoD;QAC9E,+BAA+B,EAAE,+BAA+B;QAChE,oBAAoB,EAAE,gCAAgC;QACtD,mBAAmB,EAAE,oBAAoB;QACzC,wBAAwB,EAAE,yBAAyB;QACnD,yBAAyB,EACvB,uJAAuJ;QACzJ,yBAAyB,EAAE,8CAA8C;QACzE,mCAAmC,EACjC,kFAAkF;QACpF,yBAAyB,EACvB,8GAA8G;QAChH,0BAA0B,EAAE,kCAAkC;QAC9D,+BAA+B,EAAE,iBAAiB;QAClD,wBAAwB,EAAE,mCAAmC;QAC7D,iCAAiC,EAAE,gBAAgB;QACnD,8BAA8B,EAAE,uBAAuB;QACvD,kCAAkC,EAAE,SAAS;QAC7C,6BAA6B,EAAE,mCAAmC;QAClE,uCAAuC,EAAE,yCAAyC;QAClF,iCAAiC,EAC/B,mKAAmK;QACrK,uCAAuC,EACrC,2CAA2C;QAC7C,qCAAqC,EAAE,KAAK;QAC5C,2BAA2B,EAAE,yBAAyB;KACvD;CACO,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export type { Severity, Language, Position, Range, Fix, Diagnostic, CheckResult, } from './types.js';
|
|
2
2
|
export { getParser, parseSource, detectLanguage, loadLanguage } from './parser/index.js';
|
|
3
|
-
export { loadConfig, findConfigPath, aicqConfigSchema, DEFAULT_EXCLUDE } from './config/index.js';
|
|
4
|
-
export type { AicqConfig } from './config/index.js';
|
|
3
|
+
export { loadConfig, findConfigPath, aicqConfigSchema, DEFAULT_EXCLUDE, ruleOverrideSchema } from './config/index.js';
|
|
4
|
+
export type { AicqConfig, RuleOverride } from './config/index.js';
|
|
5
5
|
export { reportJson, reportText, reportSarif } from './reporter/index.js';
|
|
6
6
|
export { FileCache, hashRulesetSignature } from './cache/index.js';
|
|
7
7
|
export type { CacheKey } from './cache/index.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,KAAK,EACL,GAAG,EACH,UAAU,EACV,WAAW,GACZ,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACzF,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,KAAK,EACL,GAAG,EACH,UAAU,EACV,WAAW,GACZ,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACzF,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,gBAAgB,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACtH,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAClE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC1E,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AACnE,YAAY,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,CAAC,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC7D,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { getParser, parseSource, detectLanguage, loadLanguage } from './parser/index.js';
|
|
2
|
-
export { loadConfig, findConfigPath, aicqConfigSchema, DEFAULT_EXCLUDE } from './config/index.js';
|
|
2
|
+
export { loadConfig, findConfigPath, aicqConfigSchema, DEFAULT_EXCLUDE, ruleOverrideSchema } from './config/index.js';
|
|
3
3
|
export { reportJson, reportText, reportSarif } from './reporter/index.js';
|
|
4
4
|
export { FileCache, hashRulesetSignature } from './cache/index.js';
|
|
5
5
|
export { t, resolveLocale, messages } from './i18n/index.js';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACzF,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACzF,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,gBAAgB,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAEtH,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC1E,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAEnE,OAAO,EAAE,CAAC,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE7D,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aicqtools/core",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Shared core for aicqtools — tree-sitter parser, sqlite incremental cache, SARIF/JSON/text reporters, config loader, i18n.",
|
|
6
6
|
"keywords": [
|