@archlinter/core 0.8.1 → 0.9.0-canary.1
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/index.d.ts +4 -1
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -140,7 +140,9 @@ export interface JsDetectorInfo {
|
|
|
140
140
|
export interface JsConfig {
|
|
141
141
|
ignore: Array<string>
|
|
142
142
|
aliases: Record<string, string>
|
|
143
|
-
|
|
143
|
+
rules: Record<string, any>
|
|
144
|
+
overrides: any[]
|
|
145
|
+
scoring: any
|
|
144
146
|
entryPoints: Array<string>
|
|
145
147
|
enableGit: boolean
|
|
146
148
|
}
|
|
@@ -211,6 +213,7 @@ export interface JsSnapshotSmell {
|
|
|
211
213
|
files: Array<string>
|
|
212
214
|
metrics: Record<string, unknown>
|
|
213
215
|
details?: unknown
|
|
216
|
+
locations: Array<JsLocationDetail>
|
|
214
217
|
}
|
|
215
218
|
export declare function runDiff(options: JsDiffOptions): JsDiffResult
|
|
216
219
|
export declare function runDiffAsync(options: JsDiffOptions): Promise<JsDiffResult>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@archlinter/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0-canary.1",
|
|
4
4
|
"description": "Core library for archlint - programmatic API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@archlinter/core-win32-x64-msvc": "0.
|
|
31
|
-
"@archlinter/core-darwin-x64": "0.
|
|
32
|
-
"@archlinter/core-linux-x64-gnu": "0.
|
|
33
|
-
"@archlinter/core-linux-x64-musl": "0.
|
|
34
|
-
"@archlinter/core-linux-arm64-gnu": "0.
|
|
35
|
-
"@archlinter/core-darwin-arm64": "0.
|
|
30
|
+
"@archlinter/core-win32-x64-msvc": "0.9.0-canary.1",
|
|
31
|
+
"@archlinter/core-darwin-x64": "0.9.0-canary.1",
|
|
32
|
+
"@archlinter/core-linux-x64-gnu": "0.9.0-canary.1",
|
|
33
|
+
"@archlinter/core-linux-x64-musl": "0.9.0-canary.1",
|
|
34
|
+
"@archlinter/core-linux-arm64-gnu": "0.9.0-canary.1",
|
|
35
|
+
"@archlinter/core-darwin-arm64": "0.9.0-canary.1"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=18"
|