@typescript-eslint/utils 8.67.1-alpha.2 → 8.67.1-alpha.21
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 +2231 -0
- package/dist/ast-utils/eslint-utils/PatternMatcher.js +1 -0
- package/dist/ast-utils/eslint-utils/ReferenceTracker.js +1 -0
- package/dist/ast-utils/eslint-utils/astUtilities.js +1 -0
- package/dist/ast-utils/eslint-utils/index.js +1 -0
- package/dist/ast-utils/eslint-utils/predicates.js +1 -0
- package/dist/ast-utils/eslint-utils/scopeAnalysis.js +1 -0
- package/dist/ast-utils/helpers.js +1 -0
- package/dist/ast-utils/index.js +1 -0
- package/dist/ast-utils/misc.js +1 -0
- package/dist/ast-utils/predicates.js +1 -0
- package/dist/eslint-utils/InferTypesFromRule.js +1 -0
- package/dist/eslint-utils/RuleCreator.js +1 -0
- package/dist/eslint-utils/applyDefault.js +1 -0
- package/dist/eslint-utils/deepMerge.js +1 -0
- package/dist/eslint-utils/getParserServices.js +1 -0
- package/dist/eslint-utils/index.js +1 -0
- package/dist/eslint-utils/nullThrows.js +1 -0
- package/dist/eslint-utils/parserSeemsToBeTSESLint.js +1 -0
- package/dist/index.js +1 -0
- package/dist/json-schema.js +1 -0
- package/dist/ts-eslint/AST.js +1 -0
- package/dist/ts-eslint/Config.js +1 -0
- package/dist/ts-eslint/ESLint.js +1 -0
- package/dist/ts-eslint/Linter.js +1 -0
- package/dist/ts-eslint/Parser.js +1 -0
- package/dist/ts-eslint/ParserOptions.js +1 -0
- package/dist/ts-eslint/Processor.js +1 -0
- package/dist/ts-eslint/Rule.js +1 -0
- package/dist/ts-eslint/RuleTester.js +1 -0
- package/dist/ts-eslint/Scope.js +1 -0
- package/dist/ts-eslint/SourceCode.js +1 -0
- package/dist/ts-eslint/eslint/ESLintShared.js +1 -0
- package/dist/ts-eslint/eslint/FlatESLint.js +1 -0
- package/dist/ts-eslint/eslint/LegacyESLint.js +1 -0
- package/dist/ts-eslint/index.js +1 -0
- package/dist/ts-estree.js +1 -0
- package/dist/ts-utils/NoInfer.js +1 -0
- package/dist/ts-utils/index.js +1 -0
- package/dist/ts-utils/isArray.js +1 -0
- package/package.json +5 -4
|
@@ -42,3 +42,4 @@ const eslintUtils = __importStar(require("@eslint-community/eslint-utils"));
|
|
|
42
42
|
* @see {@link https://eslint-community.github.io/eslint-utils/api/ast-utils.html#patternmatcher-class}
|
|
43
43
|
*/
|
|
44
44
|
exports.PatternMatcher = eslintUtils.PatternMatcher;
|
|
45
|
+
//# sourceMappingURL=PatternMatcher.js.map
|
|
@@ -46,3 +46,4 @@ const ReferenceTrackerESM = eslintUtils.ReferenceTracker.ESM;
|
|
|
46
46
|
* @see {@link https://eslint-community.github.io/eslint-utils/api/scope-utils.html#referencetracker-class}
|
|
47
47
|
*/
|
|
48
48
|
exports.ReferenceTracker = eslintUtils.ReferenceTracker;
|
|
49
|
+
//# sourceMappingURL=ReferenceTracker.js.map
|
|
@@ -57,3 +57,4 @@ exports.isOpeningParenToken = eslintUtils.isOpeningParenToken;
|
|
|
57
57
|
exports.isNotOpeningParenToken = eslintUtils.isNotOpeningParenToken;
|
|
58
58
|
exports.isSemicolonToken = eslintUtils.isSemicolonToken;
|
|
59
59
|
exports.isNotSemicolonToken = eslintUtils.isNotSemicolonToken;
|
|
60
|
+
//# sourceMappingURL=predicates.js.map
|
|
@@ -19,3 +19,4 @@ const isTokenOfTypeWithConditions = (tokenType, conditions) => {
|
|
|
19
19
|
exports.isTokenOfTypeWithConditions = isTokenOfTypeWithConditions;
|
|
20
20
|
const isNotTokenOfTypeWithConditions = (tokenType, conditions) => (token) => !(0, exports.isTokenOfTypeWithConditions)(tokenType, conditions)(token);
|
|
21
21
|
exports.isNotTokenOfTypeWithConditions = isNotTokenOfTypeWithConditions;
|
|
22
|
+
//# sourceMappingURL=helpers.js.map
|
package/dist/ast-utils/index.js
CHANGED
package/dist/ast-utils/misc.js
CHANGED
package/dist/index.js
CHANGED
package/dist/json-schema.js
CHANGED
package/dist/ts-eslint/AST.js
CHANGED
package/dist/ts-eslint/Config.js
CHANGED
package/dist/ts-eslint/ESLint.js
CHANGED
package/dist/ts-eslint/Linter.js
CHANGED
package/dist/ts-eslint/Parser.js
CHANGED
package/dist/ts-eslint/Rule.js
CHANGED
package/dist/ts-eslint/Scope.js
CHANGED
package/dist/ts-eslint/index.js
CHANGED
package/dist/ts-estree.js
CHANGED
|
@@ -7,3 +7,4 @@ var types_1 = require("@typescript-eslint/types");
|
|
|
7
7
|
Object.defineProperty(exports, "AST_NODE_TYPES", { enumerable: true, get: function () { return types_1.AST_NODE_TYPES; } });
|
|
8
8
|
Object.defineProperty(exports, "AST_TOKEN_TYPES", { enumerable: true, get: function () { return types_1.AST_TOKEN_TYPES; } });
|
|
9
9
|
Object.defineProperty(exports, "TSESTree", { enumerable: true, get: function () { return types_1.TSESTree; } });
|
|
10
|
+
//# sourceMappingURL=ts-estree.js.map
|
package/dist/ts-utils/NoInfer.js
CHANGED
package/dist/ts-utils/index.js
CHANGED
|
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./isArray"), exports);
|
|
18
18
|
__exportStar(require("./NoInfer"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
package/dist/ts-utils/isArray.js
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/utils",
|
|
3
|
-
"version": "8.67.1-alpha.
|
|
3
|
+
"version": "8.67.1-alpha.21",
|
|
4
4
|
"description": "Utilities for working with TypeScript + ESLint together",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
|
+
"!**/*.js.map",
|
|
7
8
|
"!**/*.tsbuildinfo"
|
|
8
9
|
],
|
|
9
10
|
"type": "commonjs",
|
|
@@ -51,9 +52,9 @@
|
|
|
51
52
|
],
|
|
52
53
|
"dependencies": {
|
|
53
54
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
54
|
-
"@typescript-eslint/scope-manager": "8.67.1-alpha.
|
|
55
|
-
"@typescript-eslint/
|
|
56
|
-
"@typescript-eslint/
|
|
55
|
+
"@typescript-eslint/scope-manager": "8.67.1-alpha.21",
|
|
56
|
+
"@typescript-eslint/types": "8.67.1-alpha.21",
|
|
57
|
+
"@typescript-eslint/typescript-estree": "8.67.1-alpha.21"
|
|
57
58
|
},
|
|
58
59
|
"peerDependencies": {
|
|
59
60
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|