oxlint-plugin-eslint 1.67.0 → 1.68.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/common/ast-utils.cjs +3 -3
- package/common/regexpp.cjs +1 -1
- package/package.json +1 -1
package/common/ast-utils.cjs
CHANGED
|
@@ -4193,7 +4193,7 @@ var require_eslint_visitor_keys = /* @__PURE__ */ require_chunk.t(((exports) =>
|
|
|
4193
4193
|
}
|
|
4194
4194
|
}), n.default = e, Object.freeze(n);
|
|
4195
4195
|
}
|
|
4196
|
-
var acorn__namespace =
|
|
4196
|
+
var acorn__namespace = /*#__PURE__*/ _interopNamespaceDefault(acorn);
|
|
4197
4197
|
/**
|
|
4198
4198
|
* @fileoverview Translates tokens between Acorn format and Esprima format.
|
|
4199
4199
|
* @author Nicholas C. Zakas
|
|
@@ -4844,11 +4844,11 @@ var require_eslint_visitor_keys = /* @__PURE__ */ require_chunk.t(((exports) =>
|
|
|
4844
4844
|
return new (parsers.get(options))(options, code).parse();
|
|
4845
4845
|
}
|
|
4846
4846
|
/** @type {string} */
|
|
4847
|
-
let Syntax = /*
|
|
4847
|
+
let Syntax = /* #__PURE__ */ (function() {
|
|
4848
4848
|
let key, types = {};
|
|
4849
4849
|
for (key in typeof Object.create == "function" && (types = Object.create(null)), eslintVisitorKeys.KEYS) Object.hasOwn(eslintVisitorKeys.KEYS, key) && (types[key] = key);
|
|
4850
4850
|
return typeof Object.freeze == "function" && Object.freeze(types), types;
|
|
4851
|
-
})(), latestEcmaVersion = /*
|
|
4851
|
+
})(), latestEcmaVersion = /* #__PURE__ */ getLatestEcmaVersion(), supportedEcmaVersions = /* #__PURE__ */ getSupportedEcmaVersions();
|
|
4852
4852
|
Object.defineProperty(exports, "VisitorKeys", {
|
|
4853
4853
|
enumerable: !0,
|
|
4854
4854
|
get: function() {
|
package/common/regexpp.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
//#region ../../node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp/index.js
|
|
2
2
|
var require_regexpp = /* @__PURE__ */ require("./chunk.cjs").t(((exports) => {
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: !0 });
|
|
4
|
-
var ast =
|
|
4
|
+
var ast = /*#__PURE__*/ Object.freeze({ __proto__: null });
|
|
5
5
|
let latestEcmaVersion = 2025, largeIdStartRanges, largeIdContinueRanges;
|
|
6
6
|
function isIdStart(cp) {
|
|
7
7
|
return cp < 65 ? !1 : cp < 91 ? !0 : cp < 97 ? !1 : cp < 123 ? !0 : isLargeIdStart(cp);
|