@graphql-eslint/eslint-plugin 4.0.0-alpha.0 → 4.0.0-alpha.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +0 -2
- package/{esm/cache.d.mts → cjs/cache.d.cts} +1 -1
- package/cjs/cache.js +1 -1
- package/cjs/configs/index.d.cts +9 -0
- package/cjs/configs/index.js +1 -1
- package/cjs/documents.js +1 -1
- package/{esm/estree-converter/converter.d.mts → cjs/estree-converter/converter.d.cts} +1 -1
- package/cjs/estree-converter/index.d.cts +8 -0
- package/{esm/estree-converter/types.d.mts → cjs/estree-converter/types.d.cts} +1 -1
- package/{esm/estree-converter/utils.d.mts → cjs/estree-converter/utils.d.cts} +3 -3
- package/cjs/flat-configs.d.cts +75 -0
- package/cjs/flat-configs.js +1 -3
- package/{esm/graphql-config.d.mts → cjs/graphql-config.d.cts} +3 -3
- package/cjs/graphql-config.js +2 -2
- package/{esm/index.d.mts → cjs/index.d.cts} +15 -12
- package/cjs/index.js +2 -0
- package/cjs/meta.d.cts +4 -0
- package/cjs/meta.js +36 -0
- package/cjs/package.json +1 -0
- package/{esm/parser.d.mts → cjs/parser.d.cts} +12 -5
- package/cjs/parser.js +13 -4
- package/{esm/processor.d.mts → cjs/processor.d.cts} +5 -1
- package/cjs/processor.js +5 -1
- package/{esm/rules/alphabetize.d.mts → cjs/rules/alphabetize.d.cts} +5 -5
- package/cjs/rules/alphabetize.js +1 -1
- package/{esm/rules/description-style.d.mts → cjs/rules/description-style.d.cts} +5 -5
- package/{esm/rules/graphql-js-validation.d.mts → cjs/rules/graphql-js-validation.d.cts} +4 -4
- package/{esm/rules/index.d.mts → cjs/rules/index.d.cts} +8 -9
- package/cjs/rules/index.js +1 -1
- package/{esm/rules/input-name.d.mts → cjs/rules/input-name.d.cts} +5 -5
- package/{esm/rules/lone-executable-definition.d.mts → cjs/rules/lone-executable-definition.d.cts} +5 -5
- package/{esm/rules/match-document-filename.d.mts → cjs/rules/match-document-filename.d.cts} +6 -6
- package/cjs/rules/match-document-filename.js +2 -2
- package/{esm/rules/naming-convention.d.mts → cjs/rules/naming-convention.d.cts} +5 -5
- package/cjs/rules/no-anonymous-operations.d.cts +13 -0
- package/{esm/rules/no-deprecated.d.mts → cjs/rules/no-deprecated.d.cts} +4 -4
- package/cjs/rules/no-duplicate-fields.d.cts +13 -0
- package/{esm/rules/no-hashtag-description.d.mts → cjs/rules/no-hashtag-description.d.cts} +4 -4
- package/cjs/rules/no-one-place-fragments.d.cts +13 -0
- package/{esm/rules/no-root-type.d.mts → cjs/rules/no-root-type.d.cts} +5 -5
- package/cjs/rules/no-scalar-result-type-on-mutation.d.cts +13 -0
- package/cjs/rules/no-typename-prefix.d.cts +13 -0
- package/cjs/rules/no-unreachable-types.d.cts +13 -0
- package/cjs/rules/no-unreachable-types.js +7 -9
- package/cjs/rules/no-unused-fields.d.cts +13 -0
- package/cjs/rules/no-unused-fields.js +6 -6
- package/{esm/rules/relay-arguments.d.mts → cjs/rules/relay-arguments.d.cts} +5 -5
- package/{esm/rules/relay-connection-types.d.mts → cjs/rules/relay-connection-types.d.cts} +4 -4
- package/{esm/rules/relay-edge-types.d.mts → cjs/rules/relay-edge-types.d.cts} +5 -5
- package/cjs/rules/relay-edge-types.js +2 -2
- package/cjs/rules/relay-page-info.d.cts +13 -0
- package/cjs/rules/relay-page-info.js +1 -1
- package/{esm/rules/require-deprecation-date.d.mts → cjs/rules/require-deprecation-date.d.cts} +5 -5
- package/cjs/rules/require-deprecation-reason.d.cts +13 -0
- package/{esm/rules/require-description.d.mts → cjs/rules/require-description.d.cts} +5 -5
- package/cjs/rules/require-description.js +1 -1
- package/cjs/rules/require-field-of-type-query-in-mutation-result.d.cts +13 -0
- package/cjs/rules/require-import-fragment.d.cts +13 -0
- package/cjs/rules/require-import-fragment.js +5 -9
- package/cjs/rules/require-nullable-fields-with-oneof.d.cts +13 -0
- package/cjs/rules/require-nullable-result-in-root.d.cts +13 -0
- package/{esm/rules/require-selections.d.mts → cjs/rules/require-selections.d.cts} +5 -5
- package/cjs/rules/require-selections.js +2 -1
- package/cjs/rules/require-type-pattern-with-oneof.d.cts +13 -0
- package/{esm/rules/selection-set-depth.d.mts → cjs/rules/selection-set-depth.d.cts} +5 -5
- package/cjs/rules/selection-set-depth.js +2 -2
- package/{esm/rules/strict-id-in-types.d.mts → cjs/rules/strict-id-in-types.d.cts} +5 -5
- package/cjs/rules/unique-enum-value-names.d.cts +13 -0
- package/{esm/rules/unique-fragment-name.d.mts → cjs/rules/unique-fragment-name.d.cts} +4 -4
- package/cjs/rules/unique-operation-name.d.cts +13 -0
- package/{esm/schema.d.mts → cjs/schema.d.cts} +3 -3
- package/cjs/schema.js +1 -1
- package/{esm/siblings.d.mts → cjs/siblings.d.cts} +2 -2
- package/{esm/types.d.mts → cjs/types.d.cts} +5 -4
- package/{esm/utils.d.mts → cjs/utils.d.cts} +5 -5
- package/cjs/utils.js +1 -1
- package/{cjs → esm}/cache.d.ts +1 -1
- package/esm/cache.js +1 -1
- package/esm/configs/index.d.ts +9 -0
- package/esm/configs/index.js +1 -1
- package/esm/configs/operations-all.js +1 -1
- package/esm/configs/operations-recommended.js +1 -1
- package/esm/configs/schema-all.js +1 -1
- package/esm/configs/schema-recommended.js +1 -1
- package/esm/configs/schema-relay.js +1 -1
- package/esm/documents.js +1 -1
- package/esm/estree-converter/converter.js +1 -1
- package/{cjs → esm}/estree-converter/index.d.ts +2 -2
- package/{cjs → esm}/estree-converter/types.d.ts +1 -1
- package/{cjs → esm}/estree-converter/utils.d.ts +3 -3
- package/esm/estree-converter/utils.js +1 -1
- package/esm/flat-configs.d.ts +75 -0
- package/esm/flat-configs.js +3 -5
- package/esm/graphql-config.js +3 -3
- package/{cjs → esm}/index.d.ts +7 -4
- package/esm/index.js +3 -2
- package/esm/meta.d.ts +4 -0
- package/esm/meta.js +7 -0
- package/{cjs → esm}/parser.d.ts +10 -3
- package/esm/parser.js +13 -4
- package/{cjs → esm}/processor.d.ts +5 -1
- package/esm/processor.js +6 -1
- package/{cjs → esm}/rules/alphabetize.d.ts +3 -3
- package/esm/rules/alphabetize.js +1 -1
- package/{cjs → esm}/rules/description-style.d.ts +3 -3
- package/esm/rules/description-style.js +1 -1
- package/esm/rules/graphql-js-validation.js +1 -1
- package/{cjs → esm}/rules/index.d.ts +4 -5
- package/esm/rules/index.js +2 -2
- package/{cjs → esm}/rules/input-name.d.ts +3 -3
- package/esm/rules/input-name.js +1 -1
- package/{cjs → esm}/rules/lone-executable-definition.d.ts +3 -3
- package/esm/rules/lone-executable-definition.js +1 -1
- package/{cjs → esm}/rules/match-document-filename.d.ts +3 -3
- package/esm/rules/match-document-filename.js +3 -3
- package/{cjs → esm}/rules/naming-convention.d.ts +3 -3
- package/esm/rules/naming-convention.js +1 -1
- package/esm/rules/no-anonymous-operations.js +1 -1
- package/esm/rules/no-deprecated.js +1 -1
- package/esm/rules/no-duplicate-fields.js +1 -1
- package/esm/rules/no-hashtag-description.js +1 -1
- package/esm/rules/no-one-place-fragments.js +1 -1
- package/{cjs → esm}/rules/no-root-type.d.ts +3 -3
- package/esm/rules/no-root-type.js +1 -1
- package/esm/rules/no-scalar-result-type-on-mutation.js +1 -1
- package/esm/rules/no-typename-prefix.js +1 -1
- package/esm/rules/no-unreachable-types.js +8 -9
- package/esm/rules/no-unused-fields.js +7 -6
- package/{cjs → esm}/rules/relay-arguments.d.ts +3 -3
- package/esm/rules/relay-arguments.js +1 -1
- package/esm/rules/relay-connection-types.js +1 -1
- package/{cjs → esm}/rules/relay-edge-types.d.ts +3 -3
- package/esm/rules/relay-edge-types.js +3 -3
- package/esm/rules/relay-page-info.js +2 -2
- package/{cjs → esm}/rules/require-deprecation-date.d.ts +3 -3
- package/esm/rules/require-deprecation-date.js +1 -1
- package/esm/rules/require-deprecation-reason.js +1 -1
- package/{cjs → esm}/rules/require-description.d.ts +3 -3
- package/esm/rules/require-description.js +2 -2
- package/esm/rules/require-field-of-type-query-in-mutation-result.js +1 -1
- package/esm/rules/require-import-fragment.js +5 -9
- package/esm/rules/require-nullable-fields-with-oneof.js +1 -1
- package/esm/rules/require-nullable-result-in-root.js +1 -1
- package/{cjs → esm}/rules/require-selections.d.ts +3 -3
- package/esm/rules/require-selections.js +3 -2
- package/esm/rules/require-type-pattern-with-oneof.js +1 -1
- package/{cjs → esm}/rules/selection-set-depth.d.ts +3 -3
- package/esm/rules/selection-set-depth.js +2 -2
- package/{cjs → esm}/rules/strict-id-in-types.d.ts +3 -3
- package/esm/rules/strict-id-in-types.js +1 -1
- package/esm/rules/unique-enum-value-names.js +1 -1
- package/esm/rules/unique-fragment-name.js +1 -1
- package/esm/rules/unique-operation-name.js +1 -1
- package/esm/schema.js +1 -1
- package/{cjs → esm}/siblings.d.ts +2 -2
- package/esm/siblings.js +1 -1
- package/{cjs → esm}/types.d.ts +4 -3
- package/{cjs → esm}/utils.d.ts +3 -3
- package/esm/utils.js +1 -1
- package/{index.browser.mjs → index.browser.js} +885 -785
- package/package.json +9 -8
- package/cjs/configs/index.d.ts +0 -174
- package/cjs/flat-configs.d.ts +0 -307
- package/esm/configs/index.d.mts +0 -174
- package/esm/estree-converter/index.d.mts +0 -8
- package/esm/flat-configs.d.mts +0 -307
- package/esm/package.json +0 -1
- package/esm/rules/no-anonymous-operations.d.mts +0 -13
- package/esm/rules/no-duplicate-fields.d.mts +0 -13
- package/esm/rules/no-one-place-fragments.d.mts +0 -13
- package/esm/rules/no-scalar-result-type-on-mutation.d.mts +0 -13
- package/esm/rules/no-typename-prefix.d.mts +0 -13
- package/esm/rules/no-unreachable-types.d.mts +0 -13
- package/esm/rules/no-unused-fields.d.mts +0 -13
- package/esm/rules/relay-page-info.d.mts +0 -13
- package/esm/rules/require-deprecation-reason.d.mts +0 -13
- package/esm/rules/require-field-of-type-query-in-mutation-result.d.mts +0 -13
- package/esm/rules/require-import-fragment.d.mts +0 -13
- package/esm/rules/require-nullable-fields-with-oneof.d.mts +0 -13
- package/esm/rules/require-nullable-result-in-root.d.mts +0 -13
- package/esm/rules/require-type-pattern-with-oneof.d.mts +0 -13
- package/esm/rules/unique-enum-value-names.d.mts +0 -13
- package/esm/rules/unique-operation-name.d.mts +0 -13
- package/cjs/configs/{operations-all.d.ts → operations-all.d.cts} +0 -0
- package/cjs/configs/{operations-recommended.d.ts → operations-recommended.d.cts} +0 -0
- package/cjs/configs/{schema-all.d.ts → schema-all.d.cts} +0 -0
- package/cjs/configs/{schema-recommended.d.ts → schema-recommended.d.cts} +0 -0
- package/cjs/configs/{schema-relay.d.ts → schema-relay.d.cts} +0 -0
- package/{esm/documents.d.mts → cjs/documents.d.cts} +1 -1
- package/esm/{chunk-U3TKCM4X.js → chunk-UIAXBAMD.js} +0 -0
- package/esm/configs/{operations-all.d.mts → operations-all.d.ts} +0 -0
- package/esm/configs/{operations-recommended.d.mts → operations-recommended.d.ts} +0 -0
- package/esm/configs/{schema-all.d.mts → schema-all.d.ts} +0 -0
- package/esm/configs/{schema-recommended.d.mts → schema-recommended.d.ts} +0 -0
- package/esm/configs/{schema-relay.d.mts → schema-relay.d.ts} +0 -0
- package/{cjs → esm}/documents.d.ts +1 -1
- package/{cjs → esm}/estree-converter/converter.d.ts +0 -0
- package/{cjs → esm}/graphql-config.d.ts +1 -1
- package/{cjs → esm}/rules/graphql-js-validation.d.ts +2 -2
- package/{cjs → esm}/rules/no-anonymous-operations.d.ts +2 -2
- package/{cjs → esm}/rules/no-deprecated.d.ts +2 -2
- package/{cjs → esm}/rules/no-duplicate-fields.d.ts +2 -2
- package/{cjs → esm}/rules/no-hashtag-description.d.ts +2 -2
- package/{cjs → esm}/rules/no-one-place-fragments.d.ts +2 -2
- package/{cjs → esm}/rules/no-scalar-result-type-on-mutation.d.ts +2 -2
- package/{cjs → esm}/rules/no-typename-prefix.d.ts +2 -2
- package/{cjs → esm}/rules/no-unreachable-types.d.ts +2 -2
- package/{cjs → esm}/rules/no-unused-fields.d.ts +2 -2
- package/{cjs → esm}/rules/relay-connection-types.d.ts +2 -2
- package/{cjs → esm}/rules/relay-page-info.d.ts +2 -2
- package/{cjs → esm}/rules/require-deprecation-reason.d.ts +2 -2
- package/{cjs → esm}/rules/require-field-of-type-query-in-mutation-result.d.ts +2 -2
- package/{cjs → esm}/rules/require-import-fragment.d.ts +2 -2
- package/{cjs → esm}/rules/require-nullable-fields-with-oneof.d.ts +2 -2
- package/{cjs → esm}/rules/require-nullable-result-in-root.d.ts +2 -2
- package/{cjs → esm}/rules/require-type-pattern-with-oneof.d.ts +2 -2
- package/{cjs → esm}/rules/unique-enum-value-names.d.ts +2 -2
- package/{cjs → esm}/rules/unique-fragment-name.d.ts +1 -1
- package/{cjs → esm}/rules/unique-operation-name.d.ts +2 -2
- package/{cjs → esm}/schema.d.ts +1 -1
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
-
import '../siblings.mjs';
|
7
|
-
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
6
|
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
type AllowedStyle = 'camelCase' | 'PascalCase' | 'snake_case' | 'UPPER_CASE';
|
12
12
|
declare const schema: {
|
@@ -105,4 +105,4 @@ declare const schema: {
|
|
105
105
|
type RuleOptions = FromSchema<typeof schema>;
|
106
106
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
107
107
|
|
108
|
-
export { RuleOptions, rule };
|
108
|
+
export { type RuleOptions, rule };
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,12 +1,12 @@
|
|
1
|
-
import { GraphQLESLintRule } from '../types.
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
5
|
+
import 'graphql-config';
|
5
6
|
import 'json-schema-to-ts';
|
6
|
-
import '../
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
|
-
import 'graphql-config';
|
10
10
|
|
11
11
|
declare const rule: GraphQLESLintRule<[], true>;
|
12
12
|
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,12 +1,12 @@
|
|
1
|
-
import { GraphQLESLintRule } from '../types.
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
5
|
+
import 'graphql-config';
|
5
6
|
import 'json-schema-to-ts';
|
6
|
-
import '../
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
|
-
import 'graphql-config';
|
10
10
|
|
11
11
|
declare const RULE_ID = "HASHTAG_COMMENT";
|
12
12
|
declare const rule: GraphQLESLintRule;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
-
import '../siblings.mjs';
|
7
|
-
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
6
|
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly type: "array";
|
@@ -31,4 +31,4 @@ declare const schema: {
|
|
31
31
|
type RuleOptions = FromSchema<typeof schema>;
|
32
32
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
33
33
|
|
34
|
-
export { RuleOptions, rule };
|
34
|
+
export { type RuleOptions, rule };
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -26,7 +26,7 @@ __export(no_unreachable_types_exports, {
|
|
26
26
|
rule: () => rule
|
27
27
|
});
|
28
28
|
module.exports = __toCommonJS(no_unreachable_types_exports);
|
29
|
-
var import_graphql = require("graphql"), import_lodash = __toESM(require("lodash.lowercase")), import_utils = require("../utils.js");
|
29
|
+
var import_graphql = require("graphql"), import_lodash = __toESM(require("lodash.lowercase"), 1), import_cache = require("../cache.js"), import_utils = require("../utils.js");
|
30
30
|
const RULE_ID = "no-unreachable-types", KINDS = [
|
31
31
|
import_graphql.Kind.DIRECTIVE_DEFINITION,
|
32
32
|
import_graphql.Kind.OBJECT_TYPE_DEFINITION,
|
@@ -41,9 +41,7 @@ const RULE_ID = "no-unreachable-types", KINDS = [
|
|
41
41
|
import_graphql.Kind.UNION_TYPE_EXTENSION,
|
42
42
|
import_graphql.Kind.ENUM_TYPE_DEFINITION,
|
43
43
|
import_graphql.Kind.ENUM_TYPE_EXTENSION
|
44
|
-
]
|
45
|
-
let reachableTypesCache;
|
46
|
-
const RequestDirectiveLocations = /* @__PURE__ */ new Set([
|
44
|
+
], reachableTypesCache = new import_cache.ModuleCache(), RequestDirectiveLocations = /* @__PURE__ */ new Set([
|
47
45
|
import_graphql.DirectiveLocation.QUERY,
|
48
46
|
import_graphql.DirectiveLocation.MUTATION,
|
49
47
|
import_graphql.DirectiveLocation.SUBSCRIPTION,
|
@@ -54,8 +52,9 @@ const RequestDirectiveLocations = /* @__PURE__ */ new Set([
|
|
54
52
|
import_graphql.DirectiveLocation.VARIABLE_DEFINITION
|
55
53
|
]);
|
56
54
|
function getReachableTypes(schema) {
|
57
|
-
|
58
|
-
|
55
|
+
const cachedValue = reachableTypesCache.get(schema);
|
56
|
+
if (process.env.NODE_ENV !== "test" && cachedValue)
|
57
|
+
return cachedValue;
|
59
58
|
const reachableTypes = /* @__PURE__ */ new Set(), collect = (node) => {
|
60
59
|
const typeName = (0, import_utils.getTypeName)(node);
|
61
60
|
if (reachableTypes.has(typeName))
|
@@ -66,8 +65,7 @@ function getReachableTypes(schema) {
|
|
66
65
|
const { objects, interfaces } = schema.getImplementations(type);
|
67
66
|
for (const { astNode } of [...objects, ...interfaces])
|
68
67
|
(0, import_graphql.visit)(astNode, visitor);
|
69
|
-
} else
|
70
|
-
type?.astNode && (0, import_graphql.visit)(type.astNode, visitor);
|
68
|
+
} else type?.astNode && (0, import_graphql.visit)(type.astNode, visitor);
|
71
69
|
}, visitor = {
|
72
70
|
InterfaceTypeDefinition: collect,
|
73
71
|
ObjectTypeDefinition: collect,
|
@@ -93,7 +91,7 @@ function getReachableTypes(schema) {
|
|
93
91
|
argTypeName && reachableTypes.add(argTypeName);
|
94
92
|
}
|
95
93
|
}
|
96
|
-
return reachableTypesCache
|
94
|
+
return reachableTypesCache.set(schema, reachableTypes), reachableTypes;
|
97
95
|
}
|
98
96
|
const rule = {
|
99
97
|
meta: {
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -18,12 +18,12 @@ __export(no_unused_fields_exports, {
|
|
18
18
|
rule: () => rule
|
19
19
|
});
|
20
20
|
module.exports = __toCommonJS(no_unused_fields_exports);
|
21
|
-
var import_graphql = require("graphql"), import_utils = require("../utils.js");
|
22
|
-
const RULE_ID = "no-unused-fields";
|
23
|
-
let usedFieldsCache;
|
21
|
+
var import_graphql = require("graphql"), import_cache = require("../cache.js"), import_utils = require("../utils.js");
|
22
|
+
const RULE_ID = "no-unused-fields", usedFieldsCache = new import_cache.ModuleCache();
|
24
23
|
function getUsedFields(schema, operations) {
|
25
|
-
|
26
|
-
|
24
|
+
const cachedValue = usedFieldsCache.get(schema);
|
25
|
+
if (process.env.NODE_ENV !== "test" && cachedValue)
|
26
|
+
return cachedValue;
|
27
27
|
const usedFields = /* @__PURE__ */ Object.create(null), typeInfo = new import_graphql.TypeInfo(schema), visitor = (0, import_graphql.visitWithTypeInfo)(typeInfo, {
|
28
28
|
Field(node) {
|
29
29
|
if (!typeInfo.getFieldDef())
|
@@ -34,7 +34,7 @@ function getUsedFields(schema, operations) {
|
|
34
34
|
}), allDocuments = [...operations.getOperations(), ...operations.getFragments()];
|
35
35
|
for (const { document } of allDocuments)
|
36
36
|
(0, import_graphql.visit)(document, visitor);
|
37
|
-
return usedFieldsCache
|
37
|
+
return usedFieldsCache.set(schema, usedFields), usedFields;
|
38
38
|
}
|
39
39
|
const rule = {
|
40
40
|
meta: {
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
-
import '../siblings.mjs';
|
7
|
-
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
6
|
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly type: "array";
|
@@ -27,4 +27,4 @@ declare const schema: {
|
|
27
27
|
type RuleOptions = FromSchema<typeof schema>;
|
28
28
|
declare const rule: GraphQLESLintRule<RuleOptions, true>;
|
29
29
|
|
30
|
-
export { RuleOptions, rule };
|
30
|
+
export { type RuleOptions, rule };
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { Kind } from 'graphql';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
|
+
import 'graphql-config';
|
5
6
|
import 'json-schema-to-ts';
|
6
|
-
import '../
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
|
-
import 'graphql-config';
|
10
10
|
|
11
11
|
declare const NON_OBJECT_TYPES: Kind[];
|
12
12
|
declare const rule: GraphQLESLintRule;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
-
import '../siblings.mjs';
|
7
|
-
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
6
|
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly type: "array";
|
@@ -37,4 +37,4 @@ declare const schema: {
|
|
37
37
|
type RuleOptions = FromSchema<typeof schema>;
|
38
38
|
declare const rule: GraphQLESLintRule<RuleOptions, true>;
|
39
39
|
|
40
|
-
export { RuleOptions, rule };
|
40
|
+
export { type RuleOptions, rule };
|
@@ -18,11 +18,11 @@ __export(relay_edge_types_exports, {
|
|
18
18
|
rule: () => rule
|
19
19
|
});
|
20
20
|
module.exports = __toCommonJS(relay_edge_types_exports);
|
21
|
-
var
|
21
|
+
var import_graphql = require("graphql"), import_utils = require("@graphql-tools/utils"), import_utils2 = require("../utils.js");
|
22
22
|
const RULE_ID = "relay-edge-types", MESSAGE_MUST_BE_OBJECT_TYPE = "MESSAGE_MUST_BE_OBJECT_TYPE", MESSAGE_MISSING_EDGE_SUFFIX = "MESSAGE_MISSING_EDGE_SUFFIX", MESSAGE_LIST_TYPE_ONLY_EDGE_TYPE = "MESSAGE_LIST_TYPE_ONLY_EDGE_TYPE", MESSAGE_SHOULD_IMPLEMENTS_NODE = "MESSAGE_SHOULD_IMPLEMENTS_NODE";
|
23
23
|
let edgeTypesCache;
|
24
24
|
function getEdgeTypes(schema2) {
|
25
|
-
if (edgeTypesCache)
|
25
|
+
if (process.env.NODE_ENV !== "test" && edgeTypesCache)
|
26
26
|
return edgeTypesCache;
|
27
27
|
const edgeTypes = /* @__PURE__ */ new Set(), visitor = {
|
28
28
|
ObjectTypeDefinition(node) {
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -62,7 +62,7 @@ const rule = {
|
|
62
62
|
},
|
63
63
|
create(context) {
|
64
64
|
const schema = (0, import_utils.requireGraphQLSchemaFromContext)(RULE_ID, context);
|
65
|
-
return
|
65
|
+
return (process.env.NODE_ENV === "test" || !hasPageInfoChecked) && (schema.getType("PageInfo") || context.report({
|
66
66
|
loc: import_utils.REPORT_ON_FIRST_CHARACTER,
|
67
67
|
messageId: MESSAGE_MUST_EXIST
|
68
68
|
}), hasPageInfoChecked = !0), {
|
package/{esm/rules/require-deprecation-date.d.mts → cjs/rules/require-deprecation-date.d.cts}
RENAMED
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
-
import '../siblings.mjs';
|
7
|
-
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
6
|
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly type: "array";
|
@@ -24,4 +24,4 @@ declare const schema: {
|
|
24
24
|
type RuleOptions = FromSchema<typeof schema>;
|
25
25
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
26
26
|
|
27
|
-
export { RuleOptions, rule };
|
27
|
+
export { type RuleOptions, rule };
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { Kind } from 'graphql';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
|
+
import 'graphql-config';
|
5
6
|
import 'json-schema-to-ts';
|
6
|
-
import '../
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
|
-
import 'graphql-config';
|
10
10
|
|
11
11
|
declare const RULE_ID = "require-description";
|
12
12
|
declare const ALLOWED_KINDS: readonly [Kind.OBJECT_TYPE_DEFINITION, Kind.INTERFACE_TYPE_DEFINITION, Kind.ENUM_TYPE_DEFINITION, Kind.SCALAR_TYPE_DEFINITION, Kind.INPUT_OBJECT_TYPE_DEFINITION, Kind.UNION_TYPE_DEFINITION, Kind.DIRECTIVE_DEFINITION, Kind.FIELD_DEFINITION, Kind.INPUT_VALUE_DEFINITION, Kind.ENUM_VALUE_DEFINITION, Kind.OPERATION_DEFINITION];
|
@@ -21,4 +21,4 @@ type RuleOptions = [
|
|
21
21
|
];
|
22
22
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
23
23
|
|
24
|
-
export { RULE_ID, RuleOptions, rule };
|
24
|
+
export { RULE_ID, type RuleOptions, rule };
|
@@ -19,7 +19,7 @@ __export(require_description_exports, {
|
|
19
19
|
rule: () => rule
|
20
20
|
});
|
21
21
|
module.exports = __toCommonJS(require_description_exports);
|
22
|
-
var
|
22
|
+
var import_graphql = require("graphql"), import_utils = require("@graphql-tools/utils"), import_utils2 = require("../utils.js");
|
23
23
|
const RULE_ID = "require-description", ALLOWED_KINDS = [
|
24
24
|
...import_utils2.TYPES_KINDS,
|
25
25
|
import_graphql.Kind.DIRECTIVE_DEFINITION,
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -26,7 +26,7 @@ __export(require_import_fragment_exports, {
|
|
26
26
|
rule: () => rule
|
27
27
|
});
|
28
28
|
module.exports = __toCommonJS(require_import_fragment_exports);
|
29
|
-
var import_node_path = __toESM(require("node:path")), import_utils = require("../utils.js");
|
29
|
+
var import_node_path = __toESM(require("node:path"), 1), import_utils = require("../utils.js");
|
30
30
|
const RULE_ID = "require-import-fragment", SUGGESTION_ID = "add-import-expression", rule = {
|
31
31
|
meta: {
|
32
32
|
type: "suggestion",
|
@@ -108,21 +108,17 @@ const RULE_ID = "require-import-fragment", SUGGESTION_ID = "add-import-expressio
|
|
108
108
|
for (const comment of comments) {
|
109
109
|
if (comment.type !== "Line" || !new RegExp(
|
110
110
|
`^\\s*import\\s+(${fragmentName}\\s+from\\s+)?['"]`
|
111
|
-
).test(comment.value))
|
112
|
-
continue;
|
111
|
+
).test(comment.value)) continue;
|
113
112
|
const extractedImportPath = comment.value.match(/(["'])((?:\1|.)*?)\1/)?.[2];
|
114
|
-
if (!extractedImportPath)
|
115
|
-
continue;
|
113
|
+
if (!extractedImportPath) continue;
|
116
114
|
const importPath = import_node_path.default.join(import_node_path.default.dirname(filePath), extractedImportPath);
|
117
115
|
if (fragmentsFromSiblings.some(
|
118
116
|
(source) => source.filePath === importPath
|
119
|
-
))
|
120
|
-
return;
|
117
|
+
)) return;
|
121
118
|
}
|
122
119
|
if (fragmentsFromSiblings.some(
|
123
120
|
(source) => source.filePath === filePath
|
124
|
-
))
|
125
|
-
return;
|
121
|
+
)) return;
|
126
122
|
const suggestedFilePaths = fragmentsFromSiblings.length ? fragmentsFromSiblings.map((o) => import_node_path.default.relative(import_node_path.default.dirname(filePath), o.filePath)) : ["CHANGE_ME.graphql"];
|
127
123
|
context.report({
|
128
124
|
node,
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
-
import '../siblings.mjs';
|
7
|
-
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
6
|
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly definitions: {
|
@@ -42,4 +42,4 @@ declare const schema: {
|
|
42
42
|
type RuleOptions = FromSchema<typeof schema>;
|
43
43
|
declare const rule: GraphQLESLintRule<RuleOptions, true>;
|
44
44
|
|
45
|
-
export { RuleOptions, rule };
|
45
|
+
export { type RuleOptions, rule };
|
@@ -18,7 +18,7 @@ __export(require_selections_exports, {
|
|
18
18
|
rule: () => rule
|
19
19
|
});
|
20
20
|
module.exports = __toCommonJS(require_selections_exports);
|
21
|
-
var
|
21
|
+
var import_graphql = require("graphql"), import_utils = require("@graphql-tools/utils"), import_estree_converter = require("../estree-converter/index.js"), import_utils2 = require("../utils.js");
|
22
22
|
const RULE_ID = "require-selections", DEFAULT_ID_FIELD_NAME = "id", schema = {
|
23
23
|
definitions: {
|
24
24
|
asString: {
|
@@ -41,6 +41,7 @@ const RULE_ID = "require-selections", DEFAULT_ID_FIELD_NAME = "id", schema = {
|
|
41
41
|
}, rule = {
|
42
42
|
meta: {
|
43
43
|
type: "suggestion",
|
44
|
+
// eslint-disable-next-line eslint-plugin/require-meta-has-suggestions -- false positive since we assign `problem.suggest` conditionally
|
44
45
|
hasSuggestions: !0,
|
45
46
|
docs: {
|
46
47
|
category: "Operations",
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
-
import '../siblings.mjs';
|
7
|
-
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
6
|
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly type: "array";
|
@@ -34,4 +34,4 @@ declare const schema: {
|
|
34
34
|
type RuleOptions = FromSchema<typeof schema>;
|
35
35
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
36
36
|
|
37
|
-
export { RuleOptions, rule };
|
37
|
+
export { type RuleOptions, rule };
|
@@ -26,7 +26,7 @@ __export(selection_set_depth_exports, {
|
|
26
26
|
rule: () => rule
|
27
27
|
});
|
28
28
|
module.exports = __toCommonJS(selection_set_depth_exports);
|
29
|
-
var import_graphql = require("graphql"), import_graphql_depth_limit = __toESM(require("graphql-depth-limit")), import_utils = require("../utils.js");
|
29
|
+
var import_graphql = require("graphql"), import_graphql_depth_limit = __toESM(require("graphql-depth-limit"), 1), import_utils = require("../utils.js");
|
30
30
|
const RULE_ID = "selection-set-depth", schema = {
|
31
31
|
type: "array",
|
32
32
|
minItems: 1,
|
@@ -117,7 +117,7 @@ const RULE_ID = "selection-set-depth", schema = {
|
|
117
117
|
checkFn({
|
118
118
|
getDocument: () => document,
|
119
119
|
reportError(error) {
|
120
|
-
const { line, column } = error.locations[0], token = context.getAncestors()[0].tokens.find(
|
120
|
+
const { line, column } = error.locations[0], token = context.sourceCode.getAncestors(node)[0].tokens.find(
|
121
121
|
(token2) => token2.loc.start.line === line && token2.loc.start.column === column - 1
|
122
122
|
);
|
123
123
|
context.report({
|