@storm-software/eslint 0.9.1 → 0.9.3
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/CHANGELOG.md +14 -0
- package/base.js +4 -4
- package/graphql.js +125 -109
- package/index.js +177 -161
- package/json.js +4 -4
- package/markdown.js +29 -13
- package/meta.json +1 -1
- package/next.js +56 -56
- package/package.json +2 -2
- package/react.js +4 -4
- package/recommended.js +29 -13
- package/yml.js +4 -4
package/json.js
CHANGED
|
@@ -368030,9 +368030,9 @@ var require_prettier_linter_helpers = __commonJS({
|
|
|
368030
368030
|
}
|
|
368031
368031
|
});
|
|
368032
368032
|
|
|
368033
|
-
// node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.
|
|
368033
|
+
// node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.0__ionkswkmx2nd5w7aom7efv2vey/node_modules/eslint-plugin-prettier/package.json
|
|
368034
368034
|
var require_package10 = __commonJS({
|
|
368035
|
-
"node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.
|
|
368035
|
+
"node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.0__ionkswkmx2nd5w7aom7efv2vey/node_modules/eslint-plugin-prettier/package.json"(exports, module) {
|
|
368036
368036
|
module.exports = {
|
|
368037
368037
|
name: "eslint-plugin-prettier",
|
|
368038
368038
|
version: "5.1.3",
|
|
@@ -368601,9 +368601,9 @@ var require_lib14 = __commonJS({
|
|
|
368601
368601
|
}
|
|
368602
368602
|
});
|
|
368603
368603
|
|
|
368604
|
-
// node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.
|
|
368604
|
+
// node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.0__ionkswkmx2nd5w7aom7efv2vey/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js
|
|
368605
368605
|
var require_eslint_plugin_prettier = __commonJS({
|
|
368606
|
-
"node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.
|
|
368606
|
+
"node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.0__ionkswkmx2nd5w7aom7efv2vey/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js"(exports, module) {
|
|
368607
368607
|
"use strict";
|
|
368608
368608
|
var {
|
|
368609
368609
|
showInvisibles,
|
package/markdown.js
CHANGED
|
@@ -43,7 +43,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
43
43
|
));
|
|
44
44
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
45
45
|
|
|
46
|
-
// node_modules/.pnpm/tslib@2.6.
|
|
46
|
+
// node_modules/.pnpm/tslib@2.6.3/node_modules/tslib/tslib.es6.mjs
|
|
47
47
|
var tslib_es6_exports = {};
|
|
48
48
|
__export(tslib_es6_exports, {
|
|
49
49
|
__addDisposableResource: () => __addDisposableResource,
|
|
@@ -313,16 +313,24 @@ function __await(v) {
|
|
|
313
313
|
function __asyncGenerator(thisArg, _arguments, generator) {
|
|
314
314
|
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
315
315
|
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
316
|
-
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() {
|
|
316
|
+
return i = {}, verb("next"), verb("throw"), verb("return", awaitReturn), i[Symbol.asyncIterator] = function() {
|
|
317
317
|
return this;
|
|
318
318
|
}, i;
|
|
319
|
-
function
|
|
320
|
-
|
|
321
|
-
return
|
|
322
|
-
q.push([n, v, a, b]) > 1 || resume(n, v);
|
|
323
|
-
});
|
|
319
|
+
function awaitReturn(f) {
|
|
320
|
+
return function(v) {
|
|
321
|
+
return Promise.resolve(v).then(f, reject);
|
|
324
322
|
};
|
|
325
323
|
}
|
|
324
|
+
function verb(n, f) {
|
|
325
|
+
if (g[n]) {
|
|
326
|
+
i[n] = function(v) {
|
|
327
|
+
return new Promise(function(a, b) {
|
|
328
|
+
q.push([n, v, a, b]) > 1 || resume(n, v);
|
|
329
|
+
});
|
|
330
|
+
};
|
|
331
|
+
if (f) i[n] = f(i[n]);
|
|
332
|
+
}
|
|
333
|
+
}
|
|
326
334
|
function resume(n, v) {
|
|
327
335
|
try {
|
|
328
336
|
step(g[n](v));
|
|
@@ -413,7 +421,7 @@ function __classPrivateFieldIn(state, receiver) {
|
|
|
413
421
|
function __addDisposableResource(env, value, async) {
|
|
414
422
|
if (value !== null && value !== void 0) {
|
|
415
423
|
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
|
|
416
|
-
var dispose;
|
|
424
|
+
var dispose, inner;
|
|
417
425
|
if (async) {
|
|
418
426
|
if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
|
|
419
427
|
dispose = value[Symbol.asyncDispose];
|
|
@@ -421,8 +429,16 @@ function __addDisposableResource(env, value, async) {
|
|
|
421
429
|
if (dispose === void 0) {
|
|
422
430
|
if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
|
|
423
431
|
dispose = value[Symbol.dispose];
|
|
432
|
+
if (async) inner = dispose;
|
|
424
433
|
}
|
|
425
434
|
if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
|
|
435
|
+
if (inner) dispose = function() {
|
|
436
|
+
try {
|
|
437
|
+
inner.call(this);
|
|
438
|
+
} catch (e) {
|
|
439
|
+
return Promise.reject(e);
|
|
440
|
+
}
|
|
441
|
+
};
|
|
426
442
|
env.stack.push({ value, dispose, async });
|
|
427
443
|
} else if (async) {
|
|
428
444
|
env.stack.push({ async: true });
|
|
@@ -453,7 +469,7 @@ function __disposeResources(env) {
|
|
|
453
469
|
}
|
|
454
470
|
var extendStatics, __assign, __createBinding, __setModuleDefault, _SuppressedError, tslib_es6_default;
|
|
455
471
|
var init_tslib_es6 = __esm({
|
|
456
|
-
"node_modules/.pnpm/tslib@2.6.
|
|
472
|
+
"node_modules/.pnpm/tslib@2.6.3/node_modules/tslib/tslib.es6.mjs"() {
|
|
457
473
|
extendStatics = function(d, b) {
|
|
458
474
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
459
475
|
d2.__proto__ = b2;
|
|
@@ -462217,9 +462233,9 @@ var require_prettier_linter_helpers = __commonJS({
|
|
|
462217
462233
|
}
|
|
462218
462234
|
});
|
|
462219
462235
|
|
|
462220
|
-
// node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.
|
|
462236
|
+
// node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.0__ionkswkmx2nd5w7aom7efv2vey/node_modules/eslint-plugin-prettier/package.json
|
|
462221
462237
|
var require_package8 = __commonJS({
|
|
462222
|
-
"node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.
|
|
462238
|
+
"node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.0__ionkswkmx2nd5w7aom7efv2vey/node_modules/eslint-plugin-prettier/package.json"(exports, module) {
|
|
462223
462239
|
module.exports = {
|
|
462224
462240
|
name: "eslint-plugin-prettier",
|
|
462225
462241
|
version: "5.1.3",
|
|
@@ -462722,9 +462738,9 @@ var require_lib17 = __commonJS({
|
|
|
462722
462738
|
}
|
|
462723
462739
|
});
|
|
462724
462740
|
|
|
462725
|
-
// node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.
|
|
462741
|
+
// node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.0__ionkswkmx2nd5w7aom7efv2vey/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js
|
|
462726
462742
|
var require_eslint_plugin_prettier = __commonJS({
|
|
462727
|
-
"node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.
|
|
462743
|
+
"node_modules/.pnpm/eslint-plugin-prettier@5.1.3_@types+eslint@8.56.10_eslint-config-prettier@9.1.0_eslint@9.4.0__ionkswkmx2nd5w7aom7efv2vey/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js"(exports, module) {
|
|
462728
462744
|
"use strict";
|
|
462729
462745
|
var {
|
|
462730
462746
|
showInvisibles,
|