oxlint 1.55.0 → 1.56.0
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/bindings.js +28 -27
- package/dist/cli.js +2 -1
- package/dist/globals.js +13 -0
- package/dist/index.js +11 -1
- package/dist/js_config.js +2 -3
- package/dist/lint.js +304 -284
- package/dist/plugins-dev.d.ts +27 -18
- package/dist/plugins-dev.js +1 -1
- package/dist/plugins.js +1 -0
- package/dist/utils.js +1 -13
- package/package.json +20 -20
- package/dist/config.js +0 -16
package/dist/bindings.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { n as ArrayIsArray } from "./globals.js";
|
|
1
2
|
import { createRequire } from "node:module";
|
|
2
3
|
//#region src-js/bindings.js
|
|
3
4
|
const require = createRequire(import.meta.url);
|
|
@@ -15,7 +16,7 @@ const loadErrors = [], isMusl = () => {
|
|
|
15
16
|
}
|
|
16
17
|
}, isMuslFromReport = () => {
|
|
17
18
|
let report = null;
|
|
18
|
-
return typeof process.report?.getReport == "function" && (process.report.excludeNetwork = !0, report = process.report.getReport()), report ? report.header && report.header.glibcVersionRuntime ? !1 : !!(
|
|
19
|
+
return typeof process.report?.getReport == "function" && (process.report.excludeNetwork = !0, report = process.report.getReport()), report ? report.header && report.header.glibcVersionRuntime ? !1 : !!(ArrayIsArray(report.sharedObjects) && report.sharedObjects.some(isFileMusl)) : null;
|
|
19
20
|
}, isMuslFromChildProcess = () => {
|
|
20
21
|
try {
|
|
21
22
|
return require("child_process").execSync("ldd --version", { encoding: "utf8" }).includes("musl");
|
|
@@ -37,7 +38,7 @@ function requireNative() {
|
|
|
37
38
|
}
|
|
38
39
|
try {
|
|
39
40
|
let binding = require("@oxlint/binding-android-arm64"), bindingPackageVersion = require("@oxlint/binding-android-arm64/package.json").version;
|
|
40
|
-
if (bindingPackageVersion !== "1.
|
|
41
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
41
42
|
return binding;
|
|
42
43
|
} catch (e) {
|
|
43
44
|
loadErrors.push(e);
|
|
@@ -50,7 +51,7 @@ function requireNative() {
|
|
|
50
51
|
}
|
|
51
52
|
try {
|
|
52
53
|
let binding = require("@oxlint/binding-android-arm-eabi"), bindingPackageVersion = require("@oxlint/binding-android-arm-eabi/package.json").version;
|
|
53
|
-
if (bindingPackageVersion !== "1.
|
|
54
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
54
55
|
return binding;
|
|
55
56
|
} catch (e) {
|
|
56
57
|
loadErrors.push(e);
|
|
@@ -64,7 +65,7 @@ function requireNative() {
|
|
|
64
65
|
}
|
|
65
66
|
try {
|
|
66
67
|
let binding = require("@oxlint/binding-win32-x64-gnu"), bindingPackageVersion = require("@oxlint/binding-win32-x64-gnu/package.json").version;
|
|
67
|
-
if (bindingPackageVersion !== "1.
|
|
68
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
68
69
|
return binding;
|
|
69
70
|
} catch (e) {
|
|
70
71
|
loadErrors.push(e);
|
|
@@ -77,7 +78,7 @@ function requireNative() {
|
|
|
77
78
|
}
|
|
78
79
|
try {
|
|
79
80
|
let binding = require("@oxlint/binding-win32-x64-msvc"), bindingPackageVersion = require("@oxlint/binding-win32-x64-msvc/package.json").version;
|
|
80
|
-
if (bindingPackageVersion !== "1.
|
|
81
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
81
82
|
return binding;
|
|
82
83
|
} catch (e) {
|
|
83
84
|
loadErrors.push(e);
|
|
@@ -91,7 +92,7 @@ function requireNative() {
|
|
|
91
92
|
}
|
|
92
93
|
try {
|
|
93
94
|
let binding = require("@oxlint/binding-win32-ia32-msvc"), bindingPackageVersion = require("@oxlint/binding-win32-ia32-msvc/package.json").version;
|
|
94
|
-
if (bindingPackageVersion !== "1.
|
|
95
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
95
96
|
return binding;
|
|
96
97
|
} catch (e) {
|
|
97
98
|
loadErrors.push(e);
|
|
@@ -104,7 +105,7 @@ function requireNative() {
|
|
|
104
105
|
}
|
|
105
106
|
try {
|
|
106
107
|
let binding = require("@oxlint/binding-win32-arm64-msvc"), bindingPackageVersion = require("@oxlint/binding-win32-arm64-msvc/package.json").version;
|
|
107
|
-
if (bindingPackageVersion !== "1.
|
|
108
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
108
109
|
return binding;
|
|
109
110
|
} catch (e) {
|
|
110
111
|
loadErrors.push(e);
|
|
@@ -118,7 +119,7 @@ function requireNative() {
|
|
|
118
119
|
}
|
|
119
120
|
try {
|
|
120
121
|
let binding = require("@oxlint/binding-darwin-universal"), bindingPackageVersion = require("@oxlint/binding-darwin-universal/package.json").version;
|
|
121
|
-
if (bindingPackageVersion !== "1.
|
|
122
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
122
123
|
return binding;
|
|
123
124
|
} catch (e) {
|
|
124
125
|
loadErrors.push(e);
|
|
@@ -131,7 +132,7 @@ function requireNative() {
|
|
|
131
132
|
}
|
|
132
133
|
try {
|
|
133
134
|
let binding = require("@oxlint/binding-darwin-x64"), bindingPackageVersion = require("@oxlint/binding-darwin-x64/package.json").version;
|
|
134
|
-
if (bindingPackageVersion !== "1.
|
|
135
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
135
136
|
return binding;
|
|
136
137
|
} catch (e) {
|
|
137
138
|
loadErrors.push(e);
|
|
@@ -144,7 +145,7 @@ function requireNative() {
|
|
|
144
145
|
}
|
|
145
146
|
try {
|
|
146
147
|
let binding = require("@oxlint/binding-darwin-arm64"), bindingPackageVersion = require("@oxlint/binding-darwin-arm64/package.json").version;
|
|
147
|
-
if (bindingPackageVersion !== "1.
|
|
148
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
148
149
|
return binding;
|
|
149
150
|
} catch (e) {
|
|
150
151
|
loadErrors.push(e);
|
|
@@ -158,7 +159,7 @@ function requireNative() {
|
|
|
158
159
|
}
|
|
159
160
|
try {
|
|
160
161
|
let binding = require("@oxlint/binding-freebsd-x64"), bindingPackageVersion = require("@oxlint/binding-freebsd-x64/package.json").version;
|
|
161
|
-
if (bindingPackageVersion !== "1.
|
|
162
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
162
163
|
return binding;
|
|
163
164
|
} catch (e) {
|
|
164
165
|
loadErrors.push(e);
|
|
@@ -171,7 +172,7 @@ function requireNative() {
|
|
|
171
172
|
}
|
|
172
173
|
try {
|
|
173
174
|
let binding = require("@oxlint/binding-freebsd-arm64"), bindingPackageVersion = require("@oxlint/binding-freebsd-arm64/package.json").version;
|
|
174
|
-
if (bindingPackageVersion !== "1.
|
|
175
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
175
176
|
return binding;
|
|
176
177
|
} catch (e) {
|
|
177
178
|
loadErrors.push(e);
|
|
@@ -185,7 +186,7 @@ function requireNative() {
|
|
|
185
186
|
}
|
|
186
187
|
try {
|
|
187
188
|
let binding = require("@oxlint/binding-linux-x64-musl"), bindingPackageVersion = require("@oxlint/binding-linux-x64-musl/package.json").version;
|
|
188
|
-
if (bindingPackageVersion !== "1.
|
|
189
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
189
190
|
return binding;
|
|
190
191
|
} catch (e) {
|
|
191
192
|
loadErrors.push(e);
|
|
@@ -198,7 +199,7 @@ function requireNative() {
|
|
|
198
199
|
}
|
|
199
200
|
try {
|
|
200
201
|
let binding = require("@oxlint/binding-linux-x64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-x64-gnu/package.json").version;
|
|
201
|
-
if (bindingPackageVersion !== "1.
|
|
202
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
202
203
|
return binding;
|
|
203
204
|
} catch (e) {
|
|
204
205
|
loadErrors.push(e);
|
|
@@ -212,7 +213,7 @@ function requireNative() {
|
|
|
212
213
|
}
|
|
213
214
|
try {
|
|
214
215
|
let binding = require("@oxlint/binding-linux-arm64-musl"), bindingPackageVersion = require("@oxlint/binding-linux-arm64-musl/package.json").version;
|
|
215
|
-
if (bindingPackageVersion !== "1.
|
|
216
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
216
217
|
return binding;
|
|
217
218
|
} catch (e) {
|
|
218
219
|
loadErrors.push(e);
|
|
@@ -225,7 +226,7 @@ function requireNative() {
|
|
|
225
226
|
}
|
|
226
227
|
try {
|
|
227
228
|
let binding = require("@oxlint/binding-linux-arm64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-arm64-gnu/package.json").version;
|
|
228
|
-
if (bindingPackageVersion !== "1.
|
|
229
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
229
230
|
return binding;
|
|
230
231
|
} catch (e) {
|
|
231
232
|
loadErrors.push(e);
|
|
@@ -239,7 +240,7 @@ function requireNative() {
|
|
|
239
240
|
}
|
|
240
241
|
try {
|
|
241
242
|
let binding = require("@oxlint/binding-linux-arm-musleabihf"), bindingPackageVersion = require("@oxlint/binding-linux-arm-musleabihf/package.json").version;
|
|
242
|
-
if (bindingPackageVersion !== "1.
|
|
243
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
243
244
|
return binding;
|
|
244
245
|
} catch (e) {
|
|
245
246
|
loadErrors.push(e);
|
|
@@ -252,7 +253,7 @@ function requireNative() {
|
|
|
252
253
|
}
|
|
253
254
|
try {
|
|
254
255
|
let binding = require("@oxlint/binding-linux-arm-gnueabihf"), bindingPackageVersion = require("@oxlint/binding-linux-arm-gnueabihf/package.json").version;
|
|
255
|
-
if (bindingPackageVersion !== "1.
|
|
256
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
256
257
|
return binding;
|
|
257
258
|
} catch (e) {
|
|
258
259
|
loadErrors.push(e);
|
|
@@ -266,7 +267,7 @@ function requireNative() {
|
|
|
266
267
|
}
|
|
267
268
|
try {
|
|
268
269
|
let binding = require("@oxlint/binding-linux-loong64-musl"), bindingPackageVersion = require("@oxlint/binding-linux-loong64-musl/package.json").version;
|
|
269
|
-
if (bindingPackageVersion !== "1.
|
|
270
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
270
271
|
return binding;
|
|
271
272
|
} catch (e) {
|
|
272
273
|
loadErrors.push(e);
|
|
@@ -279,7 +280,7 @@ function requireNative() {
|
|
|
279
280
|
}
|
|
280
281
|
try {
|
|
281
282
|
let binding = require("@oxlint/binding-linux-loong64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-loong64-gnu/package.json").version;
|
|
282
|
-
if (bindingPackageVersion !== "1.
|
|
283
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
283
284
|
return binding;
|
|
284
285
|
} catch (e) {
|
|
285
286
|
loadErrors.push(e);
|
|
@@ -293,7 +294,7 @@ function requireNative() {
|
|
|
293
294
|
}
|
|
294
295
|
try {
|
|
295
296
|
let binding = require("@oxlint/binding-linux-riscv64-musl"), bindingPackageVersion = require("@oxlint/binding-linux-riscv64-musl/package.json").version;
|
|
296
|
-
if (bindingPackageVersion !== "1.
|
|
297
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
297
298
|
return binding;
|
|
298
299
|
} catch (e) {
|
|
299
300
|
loadErrors.push(e);
|
|
@@ -306,7 +307,7 @@ function requireNative() {
|
|
|
306
307
|
}
|
|
307
308
|
try {
|
|
308
309
|
let binding = require("@oxlint/binding-linux-riscv64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-riscv64-gnu/package.json").version;
|
|
309
|
-
if (bindingPackageVersion !== "1.
|
|
310
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
310
311
|
return binding;
|
|
311
312
|
} catch (e) {
|
|
312
313
|
loadErrors.push(e);
|
|
@@ -320,7 +321,7 @@ function requireNative() {
|
|
|
320
321
|
}
|
|
321
322
|
try {
|
|
322
323
|
let binding = require("@oxlint/binding-linux-ppc64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-ppc64-gnu/package.json").version;
|
|
323
|
-
if (bindingPackageVersion !== "1.
|
|
324
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
324
325
|
return binding;
|
|
325
326
|
} catch (e) {
|
|
326
327
|
loadErrors.push(e);
|
|
@@ -333,7 +334,7 @@ function requireNative() {
|
|
|
333
334
|
}
|
|
334
335
|
try {
|
|
335
336
|
let binding = require("@oxlint/binding-linux-s390x-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-s390x-gnu/package.json").version;
|
|
336
|
-
if (bindingPackageVersion !== "1.
|
|
337
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
337
338
|
return binding;
|
|
338
339
|
} catch (e) {
|
|
339
340
|
loadErrors.push(e);
|
|
@@ -347,7 +348,7 @@ function requireNative() {
|
|
|
347
348
|
}
|
|
348
349
|
try {
|
|
349
350
|
let binding = require("@oxlint/binding-openharmony-arm64"), bindingPackageVersion = require("@oxlint/binding-openharmony-arm64/package.json").version;
|
|
350
|
-
if (bindingPackageVersion !== "1.
|
|
351
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
351
352
|
return binding;
|
|
352
353
|
} catch (e) {
|
|
353
354
|
loadErrors.push(e);
|
|
@@ -360,7 +361,7 @@ function requireNative() {
|
|
|
360
361
|
}
|
|
361
362
|
try {
|
|
362
363
|
let binding = require("@oxlint/binding-openharmony-x64"), bindingPackageVersion = require("@oxlint/binding-openharmony-x64/package.json").version;
|
|
363
|
-
if (bindingPackageVersion !== "1.
|
|
364
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
364
365
|
return binding;
|
|
365
366
|
} catch (e) {
|
|
366
367
|
loadErrors.push(e);
|
|
@@ -373,7 +374,7 @@ function requireNative() {
|
|
|
373
374
|
}
|
|
374
375
|
try {
|
|
375
376
|
let binding = require("@oxlint/binding-openharmony-arm"), bindingPackageVersion = require("@oxlint/binding-openharmony-arm/package.json").version;
|
|
376
|
-
if (bindingPackageVersion !== "1.
|
|
377
|
+
if (bindingPackageVersion !== "1.56.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.56.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
377
378
|
return binding;
|
|
378
379
|
} catch (e) {
|
|
379
380
|
loadErrors.push(e);
|
package/dist/cli.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "./globals.js";
|
|
1
2
|
import { r as lint } from "./bindings.js";
|
|
2
3
|
//#region src-js/cli.ts
|
|
3
4
|
let loadPlugin = null, setupRuleConfigs = null, lintFile = null, createWorkspace = null, destroyWorkspace = null, loadJsConfigs = null;
|
|
@@ -79,6 +80,6 @@ function loadJsConfigsWrapper(paths) {
|
|
|
79
80
|
return loadJsConfigs === null ? import("./js_config.js").then((mod) => (loadJsConfigs = mod.loadJsConfigs, loadJsConfigs(paths))) : loadJsConfigs(paths);
|
|
80
81
|
}
|
|
81
82
|
const args = process.argv.slice(2);
|
|
82
|
-
process.stdout.isTTY || (process.stdin._handle?.setBlocking?.(!0), process.stdout._handle?.setBlocking?.(!0)), await lint(args, loadPluginWrapper, setupRuleConfigsWrapper, lintFileWrapper, createWorkspaceWrapper, destroyWorkspaceWrapper, loadJsConfigsWrapper) || (process.exitCode = 1);
|
|
83
|
+
process.stdout.isTTY || (process.stdin._handle?.setBlocking?.(!0), process.stdout._handle?.setBlocking?.(!0)), args.includes("--lsp") && (process.stdout.write = process.stderr.write.bind(process.stderr)), await lint(args, loadPluginWrapper, setupRuleConfigsWrapper, lintFileWrapper, createWorkspaceWrapper, destroyWorkspaceWrapper, loadJsConfigsWrapper) || (process.exitCode = 1);
|
|
83
84
|
//#endregion
|
|
84
85
|
export {};
|
package/dist/globals.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
//#region src-js/utils/globals.ts
|
|
2
|
+
/**
|
|
3
|
+
* Properties of global objects exported as variables.
|
|
4
|
+
*
|
|
5
|
+
* TSDown will replace e.g. `Object.keys` with import of `ObjectKeys` from this file.
|
|
6
|
+
*
|
|
7
|
+
* If you use any globals in code in `src-js` directory, you should add them to this file.
|
|
8
|
+
*
|
|
9
|
+
* See TSDown config file for more details.
|
|
10
|
+
*/
|
|
11
|
+
const { prototype: ObjectPrototype, hasOwn: ObjectHasOwn, keys: ObjectKeys, values: ObjectValues, freeze: ObjectFreeze, preventExtensions: ObjectPreventExtensions, defineProperty: ObjectDefineProperty, defineProperties: ObjectDefineProperties, create: ObjectCreate, assign: ObjectAssign, getPrototypeOf: ObjectGetPrototypeOf, setPrototypeOf: ObjectSetPrototypeOf, entries: ObjectEntries } = Object, { prototype: ArrayPrototype, isArray: ArrayIsArray, from: ArrayFrom } = Array, { min: MathMin, max: MathMax, floor: MathFloor } = Math, { parse: JSONParse, stringify: JSONStringify } = JSON, { ownKeys: ReflectOwnKeys } = Reflect, { iterator: SymbolIterator } = Symbol, { fromCodePoint: StringFromCodePoint } = String, { now: DateNow } = Date;
|
|
12
|
+
//#endregion
|
|
13
|
+
export { ObjectValues as _, JSONStringify as a, ObjectAssign as c, ObjectEntries as d, ObjectFreeze as f, ObjectPrototype as g, ObjectPreventExtensions as h, JSONParse as i, ObjectCreate as l, ObjectKeys as m, ArrayIsArray as n, MathMax as o, ObjectHasOwn as p, DateNow as r, MathMin as s, ArrayFrom as t, ObjectDefineProperty as u, StringFromCodePoint as v, SymbolIterator as y };
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src-js/package/config.ts
|
|
2
|
+
/**
|
|
3
|
+
* Define an Oxlint configuration with type inference.
|
|
4
|
+
*
|
|
5
|
+
* @param config - Oxlint configuration
|
|
6
|
+
* @returns Config unchanged
|
|
7
|
+
*/
|
|
8
|
+
function defineConfig(config) {
|
|
9
|
+
return config;
|
|
10
|
+
}
|
|
11
|
+
//#endregion
|
|
2
12
|
export { defineConfig };
|
package/dist/js_config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { n as
|
|
2
|
-
import {
|
|
1
|
+
import { a as JSONStringify, n as ArrayIsArray, r as DateNow } from "./globals.js";
|
|
2
|
+
import { t as getErrorMessage } from "./utils.js";
|
|
3
3
|
import { basename } from "node:path";
|
|
4
4
|
//#region src-js/js_config.ts
|
|
5
5
|
const isObject = (v) => typeof v == "object" && !!v && !ArrayIsArray(v), VITE_OXLINT_CONFIG_FIELD = "lint";
|
|
@@ -62,7 +62,6 @@ async function loadJsConfigs(paths) {
|
|
|
62
62
|
};
|
|
63
63
|
}
|
|
64
64
|
if (!isObject(config)) throw Error("Configuration file must have a default export that is an object.");
|
|
65
|
-
if (!isDefineConfig(config)) throw Error("Configuration file must wrap its default export with defineConfig() from \"oxlint\".");
|
|
66
65
|
return validateConfigExtends(config), {
|
|
67
66
|
path,
|
|
68
67
|
config
|