@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,15 +1,14 @@
|
|
1
1
|
import { RuleOptions } from './require-description.js';
|
2
2
|
import { CaseStyle } from '../utils.js';
|
3
|
-
import * as
|
3
|
+
import * as graphql from 'graphql';
|
4
4
|
import { GraphQLESLintRule } from '../types.js';
|
5
|
-
import 'graphql';
|
6
5
|
import 'eslint';
|
7
6
|
import 'estree';
|
7
|
+
import '../estree-converter/types.js';
|
8
8
|
import '../siblings.js';
|
9
9
|
import '@graphql-tools/utils';
|
10
|
-
import '../estree-converter/types.js';
|
11
|
-
import 'json-schema-to-ts';
|
12
10
|
import 'graphql-config';
|
11
|
+
import 'json-schema-to-ts';
|
13
12
|
|
14
13
|
declare const rules: {
|
15
14
|
alphabetize: GraphQLESLintRule<{
|
@@ -31,7 +30,7 @@ declare const rules: {
|
|
31
30
|
checkMutations?: boolean | undefined;
|
32
31
|
}[]>;
|
33
32
|
'lone-executable-definition': GraphQLESLintRule<{
|
34
|
-
ignore?: (
|
33
|
+
ignore?: (graphql.OperationTypeNode | "fragment")[] | undefined;
|
35
34
|
}[]>;
|
36
35
|
'match-document-filename': GraphQLESLintRule<{
|
37
36
|
fragment?: (CaseStyle | "matchDocumentStyle") | {
|
package/esm/rules/index.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import "../chunk-
|
2
|
-
import { GRAPHQL_JS_VALIDATIONS } from "./graphql-js-validation.js";
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
3
2
|
import { rule as alphabetize } from "./alphabetize.js";
|
4
3
|
import { rule as descriptionStyle } from "./description-style.js";
|
4
|
+
import { GRAPHQL_JS_VALIDATIONS } from "./graphql-js-validation.js";
|
5
5
|
import { rule as inputName } from "./input-name.js";
|
6
6
|
import { rule as loneExecutableDefinition } from "./lone-executable-definition.js";
|
7
7
|
import { rule as matchDocumentFilename } from "./match-document-filename.js";
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly type: "array";
|
@@ -41,4 +41,4 @@ declare const schema: {
|
|
41
41
|
type RuleOptions = FromSchema<typeof schema>;
|
42
42
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
43
43
|
|
44
|
-
export { RuleOptions, rule };
|
44
|
+
export { type RuleOptions, rule };
|
package/esm/rules/input-name.js
CHANGED
@@ -3,10 +3,10 @@ import { FromSchema } from 'json-schema-to-ts';
|
|
3
3
|
import { GraphQLESLintRule } from '../types.js';
|
4
4
|
import 'eslint';
|
5
5
|
import 'estree';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly type: "array";
|
@@ -32,4 +32,4 @@ declare const schema: {
|
|
32
32
|
type RuleOptions = FromSchema<typeof schema>;
|
33
33
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
34
34
|
|
35
|
-
export { RuleOptions, rule };
|
35
|
+
export { type RuleOptions, rule };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import { OperationTypeNode } from "graphql";
|
3
3
|
import { ARRAY_DEFAULT_OPTIONS, getLocation, pascalCase } from "../utils.js";
|
4
4
|
const RULE_ID = "lone-executable-definition", definitionTypes = ["fragment", ...Object.values(OperationTypeNode)], schema = {
|
@@ -4,10 +4,10 @@ import { CaseStyle as CaseStyle$1 } from '../utils.js';
|
|
4
4
|
import 'eslint';
|
5
5
|
import 'estree';
|
6
6
|
import 'graphql';
|
7
|
+
import 'graphql-config';
|
8
|
+
import '../estree-converter/types.js';
|
7
9
|
import '../siblings.js';
|
8
10
|
import '@graphql-tools/utils';
|
9
|
-
import '../estree-converter/types.js';
|
10
|
-
import 'graphql-config';
|
11
11
|
|
12
12
|
type CaseStyle = CaseStyle$1 | 'matchDocumentStyle';
|
13
13
|
declare const schema: {
|
@@ -78,4 +78,4 @@ declare const schema: {
|
|
78
78
|
type RuleOptions = FromSchema<typeof schema>;
|
79
79
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
80
80
|
|
81
|
-
export { RuleOptions, rule };
|
81
|
+
export { type RuleOptions, rule };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import { basename, extname } from "node:path";
|
3
3
|
import { Kind } from "graphql";
|
4
4
|
import {
|
@@ -187,8 +187,8 @@ const MATCH_EXTENSION = "MATCH_EXTENSION", MATCH_STYLE = "MATCH_STYLE", CASE_STY
|
|
187
187
|
create(context) {
|
188
188
|
const options = context.options[0] || {
|
189
189
|
fileExtension: null
|
190
|
-
}, filePath = context.filename;
|
191
|
-
if (
|
190
|
+
}, filePath = context.filename, isVirtualFile = VIRTUAL_DOCUMENT_REGEX.test(filePath);
|
191
|
+
if (process.env.NODE_ENV !== "test" && isVirtualFile)
|
192
192
|
return {};
|
193
193
|
const fileExtension = extname(filePath), filename = basename(filePath, fileExtension);
|
194
194
|
return {
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
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 };
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
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 };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import {
|
3
3
|
DirectiveLocation,
|
4
4
|
isInterfaceType,
|
@@ -6,6 +6,7 @@ import {
|
|
6
6
|
visit
|
7
7
|
} from "graphql";
|
8
8
|
import lowerCase from "lodash.lowercase";
|
9
|
+
import { ModuleCache } from "../cache.js";
|
9
10
|
import { getTypeName, requireGraphQLSchemaFromContext } from "../utils.js";
|
10
11
|
const RULE_ID = "no-unreachable-types", KINDS = [
|
11
12
|
Kind.DIRECTIVE_DEFINITION,
|
@@ -21,9 +22,7 @@ const RULE_ID = "no-unreachable-types", KINDS = [
|
|
21
22
|
Kind.UNION_TYPE_EXTENSION,
|
22
23
|
Kind.ENUM_TYPE_DEFINITION,
|
23
24
|
Kind.ENUM_TYPE_EXTENSION
|
24
|
-
]
|
25
|
-
let reachableTypesCache;
|
26
|
-
const RequestDirectiveLocations = /* @__PURE__ */ new Set([
|
25
|
+
], reachableTypesCache = new ModuleCache(), RequestDirectiveLocations = /* @__PURE__ */ new Set([
|
27
26
|
DirectiveLocation.QUERY,
|
28
27
|
DirectiveLocation.MUTATION,
|
29
28
|
DirectiveLocation.SUBSCRIPTION,
|
@@ -34,8 +33,9 @@ const RequestDirectiveLocations = /* @__PURE__ */ new Set([
|
|
34
33
|
DirectiveLocation.VARIABLE_DEFINITION
|
35
34
|
]);
|
36
35
|
function getReachableTypes(schema) {
|
37
|
-
|
38
|
-
|
36
|
+
const cachedValue = reachableTypesCache.get(schema);
|
37
|
+
if (process.env.NODE_ENV !== "test" && cachedValue)
|
38
|
+
return cachedValue;
|
39
39
|
const reachableTypes = /* @__PURE__ */ new Set(), collect = (node) => {
|
40
40
|
const typeName = getTypeName(node);
|
41
41
|
if (reachableTypes.has(typeName))
|
@@ -46,8 +46,7 @@ function getReachableTypes(schema) {
|
|
46
46
|
const { objects, interfaces } = schema.getImplementations(type);
|
47
47
|
for (const { astNode } of [...objects, ...interfaces])
|
48
48
|
visit(astNode, visitor);
|
49
|
-
} else
|
50
|
-
type?.astNode && visit(type.astNode, visitor);
|
49
|
+
} else type?.astNode && visit(type.astNode, visitor);
|
51
50
|
}, visitor = {
|
52
51
|
InterfaceTypeDefinition: collect,
|
53
52
|
ObjectTypeDefinition: collect,
|
@@ -73,7 +72,7 @@ function getReachableTypes(schema) {
|
|
73
72
|
argTypeName && reachableTypes.add(argTypeName);
|
74
73
|
}
|
75
74
|
}
|
76
|
-
return reachableTypesCache
|
75
|
+
return reachableTypesCache.set(schema, reachableTypes), reachableTypes;
|
77
76
|
}
|
78
77
|
const rule = {
|
79
78
|
meta: {
|
@@ -1,11 +1,12 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import { TypeInfo, visit, visitWithTypeInfo } from "graphql";
|
3
|
+
import { ModuleCache } from "../cache.js";
|
3
4
|
import { requireGraphQLSchemaFromContext, requireSiblingsOperations } from "../utils.js";
|
4
|
-
const RULE_ID = "no-unused-fields";
|
5
|
-
let usedFieldsCache;
|
5
|
+
const RULE_ID = "no-unused-fields", usedFieldsCache = new ModuleCache();
|
6
6
|
function getUsedFields(schema, operations) {
|
7
|
-
|
8
|
-
|
7
|
+
const cachedValue = usedFieldsCache.get(schema);
|
8
|
+
if (process.env.NODE_ENV !== "test" && cachedValue)
|
9
|
+
return cachedValue;
|
9
10
|
const usedFields = /* @__PURE__ */ Object.create(null), typeInfo = new TypeInfo(schema), visitor = visitWithTypeInfo(typeInfo, {
|
10
11
|
Field(node) {
|
11
12
|
if (!typeInfo.getFieldDef())
|
@@ -16,7 +17,7 @@ function getUsedFields(schema, operations) {
|
|
16
17
|
}), allDocuments = [...operations.getOperations(), ...operations.getFragments()];
|
17
18
|
for (const { document } of allDocuments)
|
18
19
|
visit(document, visitor);
|
19
|
-
return usedFieldsCache
|
20
|
+
return usedFieldsCache.set(schema, usedFields), usedFields;
|
20
21
|
}
|
21
22
|
const rule = {
|
22
23
|
meta: {
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
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,4 +1,4 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind } from "graphql";
|
3
3
|
const MUST_BE_OBJECT_TYPE = "MUST_BE_OBJECT_TYPE", MUST_CONTAIN_FIELD_EDGES = "MUST_CONTAIN_FIELD_EDGES", MUST_CONTAIN_FIELD_PAGE_INFO = "MUST_CONTAIN_FIELD_PAGE_INFO", MUST_HAVE_CONNECTION_SUFFIX = "MUST_HAVE_CONNECTION_SUFFIX", EDGES_FIELD_MUST_RETURN_LIST_TYPE = "EDGES_FIELD_MUST_RETURN_LIST_TYPE", PAGE_INFO_FIELD_MUST_RETURN_NON_NULL_TYPE = "PAGE_INFO_FIELD_MUST_RETURN_NON_NULL_TYPE", NON_OBJECT_TYPES = [
|
4
4
|
Kind.SCALAR_TYPE_DEFINITION,
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
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 };
|
@@ -1,16 +1,16 @@
|
|
1
|
-
import "../chunk-
|
2
|
-
import { getDocumentNodeFromSchema } from "@graphql-tools/utils";
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
3
2
|
import {
|
4
3
|
isObjectType,
|
5
4
|
isScalarType,
|
6
5
|
Kind,
|
7
6
|
visit
|
8
7
|
} from "graphql";
|
8
|
+
import { getDocumentNodeFromSchema } from "@graphql-tools/utils";
|
9
9
|
import { getTypeName, requireGraphQLSchemaFromContext } from "../utils.js";
|
10
10
|
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";
|
11
11
|
let edgeTypesCache;
|
12
12
|
function getEdgeTypes(schema2) {
|
13
|
-
if (edgeTypesCache)
|
13
|
+
if (process.env.NODE_ENV !== "test" && edgeTypesCache)
|
14
14
|
return edgeTypesCache;
|
15
15
|
const edgeTypes = /* @__PURE__ */ new Set(), visitor = {
|
16
16
|
ObjectTypeDefinition(node) {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import { isScalarType, Kind } from "graphql";
|
3
3
|
import { REPORT_ON_FIRST_CHARACTER, requireGraphQLSchemaFromContext } from "../utils.js";
|
4
4
|
import { NON_OBJECT_TYPES } from "./relay-connection-types.js";
|
@@ -45,7 +45,7 @@ const rule = {
|
|
45
45
|
},
|
46
46
|
create(context) {
|
47
47
|
const schema = requireGraphQLSchemaFromContext(RULE_ID, context);
|
48
|
-
return
|
48
|
+
return (process.env.NODE_ENV === "test" || !hasPageInfoChecked) && (schema.getType("PageInfo") || context.report({
|
49
49
|
loc: REPORT_ON_FIRST_CHARACTER,
|
50
50
|
messageId: MESSAGE_MUST_EXIST
|
51
51
|
}), hasPageInfoChecked = !0), {
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
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 };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import { valueFromNode } from "../estree-converter/index.js";
|
3
3
|
import { getNodeName } from "../utils.js";
|
4
4
|
const DATE_REGEX = /^\d{2}\/\d{2}\/\d{4}$/, MESSAGE_REQUIRE_DATE = "MESSAGE_REQUIRE_DATE", MESSAGE_INVALID_FORMAT = "MESSAGE_INVALID_FORMAT", MESSAGE_INVALID_DATE = "MESSAGE_INVALID_DATE", MESSAGE_CAN_BE_REMOVED = "MESSAGE_CAN_BE_REMOVED", schema = {
|
@@ -2,11 +2,11 @@ import { Kind } from 'graphql';
|
|
2
2
|
import { GraphQLESLintRule } from '../types.js';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
|
+
import 'graphql-config';
|
5
6
|
import 'json-schema-to-ts';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
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 };
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "../chunk-
|
2
|
-
import { getRootTypeNames } from "@graphql-tools/utils";
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
3
2
|
import { Kind, TokenKind } from "graphql";
|
3
|
+
import { getRootTypeNames } from "@graphql-tools/utils";
|
4
4
|
import {
|
5
5
|
getLocation,
|
6
6
|
getNodeName,
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import path from "node:path";
|
3
3
|
import { requireSiblingsOperations } from "../utils.js";
|
4
4
|
const RULE_ID = "require-import-fragment", SUGGESTION_ID = "add-import-expression", rule = {
|
@@ -82,21 +82,17 @@ const RULE_ID = "require-import-fragment", SUGGESTION_ID = "add-import-expressio
|
|
82
82
|
for (const comment of comments) {
|
83
83
|
if (comment.type !== "Line" || !new RegExp(
|
84
84
|
`^\\s*import\\s+(${fragmentName}\\s+from\\s+)?['"]`
|
85
|
-
).test(comment.value))
|
86
|
-
continue;
|
85
|
+
).test(comment.value)) continue;
|
87
86
|
const extractedImportPath = comment.value.match(/(["'])((?:\1|.)*?)\1/)?.[2];
|
88
|
-
if (!extractedImportPath)
|
89
|
-
continue;
|
87
|
+
if (!extractedImportPath) continue;
|
90
88
|
const importPath = path.join(path.dirname(filePath), extractedImportPath);
|
91
89
|
if (fragmentsFromSiblings.some(
|
92
90
|
(source) => source.filePath === importPath
|
93
|
-
))
|
94
|
-
return;
|
91
|
+
)) return;
|
95
92
|
}
|
96
93
|
if (fragmentsFromSiblings.some(
|
97
94
|
(source) => source.filePath === filePath
|
98
|
-
))
|
99
|
-
return;
|
95
|
+
)) return;
|
100
96
|
const suggestedFilePaths = fragmentsFromSiblings.length ? fragmentsFromSiblings.map((o) => path.relative(path.dirname(filePath), o.filePath)) : ["CHANGE_ME.graphql"];
|
101
97
|
context.report({
|
102
98
|
node,
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
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 };
|
@@ -1,5 +1,4 @@
|
|
1
|
-
import "../chunk-
|
2
|
-
import { asArray } from "@graphql-tools/utils";
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
3
2
|
import {
|
4
3
|
GraphQLInterfaceType,
|
5
4
|
GraphQLObjectType,
|
@@ -9,6 +8,7 @@ import {
|
|
9
8
|
visit,
|
10
9
|
visitWithTypeInfo
|
11
10
|
} from "graphql";
|
11
|
+
import { asArray } from "@graphql-tools/utils";
|
12
12
|
import { getBaseType } from "../estree-converter/index.js";
|
13
13
|
import {
|
14
14
|
ARRAY_DEFAULT_OPTIONS,
|
@@ -38,6 +38,7 @@ const RULE_ID = "require-selections", DEFAULT_ID_FIELD_NAME = "id", schema = {
|
|
38
38
|
}, rule = {
|
39
39
|
meta: {
|
40
40
|
type: "suggestion",
|
41
|
+
// eslint-disable-next-line eslint-plugin/require-meta-has-suggestions -- false positive since we assign `problem.suggest` conditionally
|
41
42
|
hasSuggestions: !0,
|
42
43
|
docs: {
|
43
44
|
category: "Operations",
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
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 };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "../chunk-
|
1
|
+
import "../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind } from "graphql";
|
3
3
|
import depthLimit from "graphql-depth-limit";
|
4
4
|
import { ARRAY_DEFAULT_OPTIONS, logger, requireSiblingsOperations } from "../utils.js";
|
@@ -92,7 +92,7 @@ const RULE_ID = "selection-set-depth", schema = {
|
|
92
92
|
checkFn({
|
93
93
|
getDocument: () => document,
|
94
94
|
reportError(error) {
|
95
|
-
const { line, column } = error.locations[0], token = context.getAncestors()[0].tokens.find(
|
95
|
+
const { line, column } = error.locations[0], token = context.sourceCode.getAncestors(node)[0].tokens.find(
|
96
96
|
(token2) => token2.loc.start.line === line && token2.loc.start.column === column - 1
|
97
97
|
);
|
98
98
|
context.report({
|
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
|
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import '../estree-converter/types.js';
|
6
8
|
import '../siblings.js';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.js';
|
9
|
-
import 'graphql-config';
|
10
10
|
|
11
11
|
declare const schema: {
|
12
12
|
readonly type: "array";
|
@@ -63,4 +63,4 @@ declare const schema: {
|
|
63
63
|
type RuleOptions = FromSchema<typeof schema>;
|
64
64
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
65
65
|
|
66
|
-
export { RuleOptions, rule };
|
66
|
+
export { type RuleOptions, rule };
|