@lousy-agents/lint 5.15.6 → 5.15.7
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/index.js +105 -104
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -35399,77 +35399,6 @@ function safeDestr(value, options = {}) {
|
|
|
35399
35399
|
|
|
35400
35400
|
|
|
35401
35401
|
|
|
35402
|
-
;// CONCATENATED MODULE: ../../node_modules/defu/dist/defu.mjs
|
|
35403
|
-
function defu_isPlainObject(value) {
|
|
35404
|
-
if (value === null || typeof value !== "object") {
|
|
35405
|
-
return false;
|
|
35406
|
-
}
|
|
35407
|
-
const prototype = Object.getPrototypeOf(value);
|
|
35408
|
-
if (prototype !== null && prototype !== Object.prototype && Object.getPrototypeOf(prototype) !== null) {
|
|
35409
|
-
return false;
|
|
35410
|
-
}
|
|
35411
|
-
if (Symbol.iterator in value) {
|
|
35412
|
-
return false;
|
|
35413
|
-
}
|
|
35414
|
-
if (Symbol.toStringTag in value) {
|
|
35415
|
-
return Object.prototype.toString.call(value) === "[object Module]";
|
|
35416
|
-
}
|
|
35417
|
-
return true;
|
|
35418
|
-
}
|
|
35419
|
-
|
|
35420
|
-
function defu_defu(baseObject, defaults, namespace = ".", merger) {
|
|
35421
|
-
if (!defu_isPlainObject(defaults)) {
|
|
35422
|
-
return defu_defu(baseObject, {}, namespace, merger);
|
|
35423
|
-
}
|
|
35424
|
-
const object = { ...defaults };
|
|
35425
|
-
for (const key of Object.keys(baseObject)) {
|
|
35426
|
-
if (key === "__proto__" || key === "constructor") {
|
|
35427
|
-
continue;
|
|
35428
|
-
}
|
|
35429
|
-
const value = baseObject[key];
|
|
35430
|
-
if (value === null || value === void 0) {
|
|
35431
|
-
continue;
|
|
35432
|
-
}
|
|
35433
|
-
if (merger && merger(object, key, value, namespace)) {
|
|
35434
|
-
continue;
|
|
35435
|
-
}
|
|
35436
|
-
if (Array.isArray(value) && Array.isArray(object[key])) {
|
|
35437
|
-
object[key] = [...value, ...object[key]];
|
|
35438
|
-
} else if (defu_isPlainObject(value) && defu_isPlainObject(object[key])) {
|
|
35439
|
-
object[key] = defu_defu(
|
|
35440
|
-
value,
|
|
35441
|
-
object[key],
|
|
35442
|
-
(namespace ? `${namespace}.` : "") + key.toString(),
|
|
35443
|
-
merger
|
|
35444
|
-
);
|
|
35445
|
-
} else {
|
|
35446
|
-
object[key] = value;
|
|
35447
|
-
}
|
|
35448
|
-
}
|
|
35449
|
-
return object;
|
|
35450
|
-
}
|
|
35451
|
-
function defu_createDefu(merger) {
|
|
35452
|
-
return (...arguments_) => (
|
|
35453
|
-
// eslint-disable-next-line unicorn/no-array-reduce
|
|
35454
|
-
arguments_.reduce((p, c) => defu_defu(p, c, "", merger), {})
|
|
35455
|
-
);
|
|
35456
|
-
}
|
|
35457
|
-
const dist_defu_defu = defu_createDefu();
|
|
35458
|
-
const defuFn = defu_createDefu((object, key, currentValue) => {
|
|
35459
|
-
if (object[key] !== void 0 && typeof currentValue === "function") {
|
|
35460
|
-
object[key] = currentValue(object[key]);
|
|
35461
|
-
return true;
|
|
35462
|
-
}
|
|
35463
|
-
});
|
|
35464
|
-
const defuArrayFn = defu_createDefu((object, key, currentValue) => {
|
|
35465
|
-
if (Array.isArray(object[key]) && typeof currentValue === "function") {
|
|
35466
|
-
object[key] = currentValue(object[key]);
|
|
35467
|
-
return true;
|
|
35468
|
-
}
|
|
35469
|
-
});
|
|
35470
|
-
|
|
35471
|
-
|
|
35472
|
-
|
|
35473
35402
|
;// CONCATENATED MODULE: ../../node_modules/rc9/dist/index.mjs
|
|
35474
35403
|
|
|
35475
35404
|
|
|
@@ -35630,6 +35559,77 @@ function updateUser(config, options) {
|
|
|
35630
35559
|
//#endregion
|
|
35631
35560
|
|
|
35632
35561
|
|
|
35562
|
+
;// CONCATENATED MODULE: ../../node_modules/defu/dist/defu.mjs
|
|
35563
|
+
function defu_isPlainObject(value) {
|
|
35564
|
+
if (value === null || typeof value !== "object") {
|
|
35565
|
+
return false;
|
|
35566
|
+
}
|
|
35567
|
+
const prototype = Object.getPrototypeOf(value);
|
|
35568
|
+
if (prototype !== null && prototype !== Object.prototype && Object.getPrototypeOf(prototype) !== null) {
|
|
35569
|
+
return false;
|
|
35570
|
+
}
|
|
35571
|
+
if (Symbol.iterator in value) {
|
|
35572
|
+
return false;
|
|
35573
|
+
}
|
|
35574
|
+
if (Symbol.toStringTag in value) {
|
|
35575
|
+
return Object.prototype.toString.call(value) === "[object Module]";
|
|
35576
|
+
}
|
|
35577
|
+
return true;
|
|
35578
|
+
}
|
|
35579
|
+
|
|
35580
|
+
function defu_defu(baseObject, defaults, namespace = ".", merger) {
|
|
35581
|
+
if (!defu_isPlainObject(defaults)) {
|
|
35582
|
+
return defu_defu(baseObject, {}, namespace, merger);
|
|
35583
|
+
}
|
|
35584
|
+
const object = { ...defaults };
|
|
35585
|
+
for (const key of Object.keys(baseObject)) {
|
|
35586
|
+
if (key === "__proto__" || key === "constructor") {
|
|
35587
|
+
continue;
|
|
35588
|
+
}
|
|
35589
|
+
const value = baseObject[key];
|
|
35590
|
+
if (value === null || value === void 0) {
|
|
35591
|
+
continue;
|
|
35592
|
+
}
|
|
35593
|
+
if (merger && merger(object, key, value, namespace)) {
|
|
35594
|
+
continue;
|
|
35595
|
+
}
|
|
35596
|
+
if (Array.isArray(value) && Array.isArray(object[key])) {
|
|
35597
|
+
object[key] = [...value, ...object[key]];
|
|
35598
|
+
} else if (defu_isPlainObject(value) && defu_isPlainObject(object[key])) {
|
|
35599
|
+
object[key] = defu_defu(
|
|
35600
|
+
value,
|
|
35601
|
+
object[key],
|
|
35602
|
+
(namespace ? `${namespace}.` : "") + key.toString(),
|
|
35603
|
+
merger
|
|
35604
|
+
);
|
|
35605
|
+
} else {
|
|
35606
|
+
object[key] = value;
|
|
35607
|
+
}
|
|
35608
|
+
}
|
|
35609
|
+
return object;
|
|
35610
|
+
}
|
|
35611
|
+
function defu_createDefu(merger) {
|
|
35612
|
+
return (...arguments_) => (
|
|
35613
|
+
// eslint-disable-next-line unicorn/no-array-reduce
|
|
35614
|
+
arguments_.reduce((p, c) => defu_defu(p, c, "", merger), {})
|
|
35615
|
+
);
|
|
35616
|
+
}
|
|
35617
|
+
const dist_defu_defu = defu_createDefu();
|
|
35618
|
+
const defuFn = (/* unused pure expression or super */ null && (defu_createDefu((object, key, currentValue) => {
|
|
35619
|
+
if (object[key] !== void 0 && typeof currentValue === "function") {
|
|
35620
|
+
object[key] = currentValue(object[key]);
|
|
35621
|
+
return true;
|
|
35622
|
+
}
|
|
35623
|
+
})));
|
|
35624
|
+
const defuArrayFn = (/* unused pure expression or super */ null && (defu_createDefu((object, key, currentValue) => {
|
|
35625
|
+
if (Array.isArray(object[key]) && typeof currentValue === "function") {
|
|
35626
|
+
object[key] = currentValue(object[key]);
|
|
35627
|
+
return true;
|
|
35628
|
+
}
|
|
35629
|
+
})));
|
|
35630
|
+
|
|
35631
|
+
|
|
35632
|
+
|
|
35633
35633
|
// EXTERNAL MODULE: ../../node_modules/confbox/dist/_chunks/_format.mjs
|
|
35634
35634
|
var _format = __webpack_require__(5492);
|
|
35635
35635
|
;// CONCATENATED MODULE: ../../node_modules/confbox/dist/_chunks/json.mjs
|
|
@@ -40535,7 +40535,7 @@ exports.prettifyError = prettifyError;
|
|
|
40535
40535
|
|
|
40536
40536
|
},
|
|
40537
40537
|
3519(__unused_rspack_module, exports, __webpack_require__) {
|
|
40538
|
-
var
|
|
40538
|
+
var __rspack_unused_export;
|
|
40539
40539
|
|
|
40540
40540
|
|
|
40541
40541
|
var composer = __webpack_require__(8480);
|
|
@@ -40557,35 +40557,35 @@ var visit = __webpack_require__(4364);
|
|
|
40557
40557
|
|
|
40558
40558
|
|
|
40559
40559
|
|
|
40560
|
-
|
|
40561
|
-
|
|
40562
|
-
|
|
40563
|
-
|
|
40564
|
-
|
|
40565
|
-
|
|
40566
|
-
|
|
40567
|
-
|
|
40568
|
-
|
|
40569
|
-
|
|
40570
|
-
|
|
40571
|
-
|
|
40572
|
-
|
|
40573
|
-
|
|
40574
|
-
|
|
40575
|
-
|
|
40576
|
-
|
|
40577
|
-
|
|
40578
|
-
|
|
40579
|
-
|
|
40580
|
-
|
|
40581
|
-
|
|
40582
|
-
|
|
40560
|
+
__rspack_unused_export = composer.Composer;
|
|
40561
|
+
__rspack_unused_export = Document.Document;
|
|
40562
|
+
__rspack_unused_export = Schema.Schema;
|
|
40563
|
+
__rspack_unused_export = errors.YAMLError;
|
|
40564
|
+
__rspack_unused_export = errors.YAMLParseError;
|
|
40565
|
+
__rspack_unused_export = errors.YAMLWarning;
|
|
40566
|
+
__rspack_unused_export = Alias.Alias;
|
|
40567
|
+
__rspack_unused_export = identity.isAlias;
|
|
40568
|
+
__rspack_unused_export = identity.isCollection;
|
|
40569
|
+
__rspack_unused_export = identity.isDocument;
|
|
40570
|
+
__rspack_unused_export = identity.isMap;
|
|
40571
|
+
__rspack_unused_export = identity.isNode;
|
|
40572
|
+
__rspack_unused_export = identity.isPair;
|
|
40573
|
+
__rspack_unused_export = identity.isScalar;
|
|
40574
|
+
__rspack_unused_export = identity.isSeq;
|
|
40575
|
+
__rspack_unused_export = Pair.Pair;
|
|
40576
|
+
__rspack_unused_export = Scalar.Scalar;
|
|
40577
|
+
__rspack_unused_export = YAMLMap.YAMLMap;
|
|
40578
|
+
__rspack_unused_export = YAMLSeq.YAMLSeq;
|
|
40579
|
+
__rspack_unused_export = cst;
|
|
40580
|
+
__rspack_unused_export = lexer.Lexer;
|
|
40581
|
+
__rspack_unused_export = lineCounter.LineCounter;
|
|
40582
|
+
__rspack_unused_export = parser.Parser;
|
|
40583
40583
|
exports.qg = publicApi.parse;
|
|
40584
|
-
|
|
40585
|
-
|
|
40586
|
-
|
|
40587
|
-
|
|
40588
|
-
|
|
40584
|
+
__rspack_unused_export = publicApi.parseAllDocuments;
|
|
40585
|
+
__rspack_unused_export = publicApi.parseDocument;
|
|
40586
|
+
__rspack_unused_export = publicApi.stringify;
|
|
40587
|
+
__rspack_unused_export = visit.visit;
|
|
40588
|
+
__rspack_unused_export = visit.visitAsync;
|
|
40589
40589
|
|
|
40590
40590
|
|
|
40591
40591
|
},
|
|
@@ -46497,14 +46497,14 @@ __webpack_require__.r = (exports) => {
|
|
|
46497
46497
|
var installedChunks = {410: 0,};
|
|
46498
46498
|
var installChunk = (data) => {
|
|
46499
46499
|
var __rspack_esm_ids = data.__rspack_esm_ids;
|
|
46500
|
-
var
|
|
46500
|
+
var moreModules = data.__webpack_modules__;
|
|
46501
46501
|
var __rspack_esm_runtime = data.__rspack_esm_runtime;
|
|
46502
46502
|
// add "modules" to the modules object,
|
|
46503
46503
|
// then flag all "ids" as loaded and fire callback
|
|
46504
46504
|
var moduleId, chunkId, i = 0;
|
|
46505
|
-
for (moduleId in
|
|
46506
|
-
if (__webpack_require__.o(
|
|
46507
|
-
__webpack_require__.m[moduleId] =
|
|
46505
|
+
for (moduleId in moreModules) {
|
|
46506
|
+
if (__webpack_require__.o(moreModules, moduleId)) {
|
|
46507
|
+
__webpack_require__.m[moduleId] = moreModules[moduleId];
|
|
46508
46508
|
}
|
|
46509
46509
|
}
|
|
46510
46510
|
if (__rspack_esm_runtime) __rspack_esm_runtime(__webpack_require__);
|
|
@@ -46517,6 +46517,7 @@ __webpack_require__.r = (exports) => {
|
|
|
46517
46517
|
}
|
|
46518
46518
|
|
|
46519
46519
|
};
|
|
46520
|
+
|
|
46520
46521
|
__webpack_require__.f.j = function (chunkId, promises) {
|
|
46521
46522
|
// import() chunk loading for javascript
|
|
46522
46523
|
var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
package/package.json
CHANGED