@graphql-eslint/eslint-plugin 4.0.0-alpha.1 → 4.0.0-alpha.11
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -0
- package/{esm/cache.d.mts → cjs/cache.d.cts} +1 -1
- package/cjs/cache.js +8 -36
- package/cjs/chunk-UIAXBAMD.js +8 -0
- package/cjs/configs/index.d.cts +24 -0
- package/cjs/configs/index.js +35 -38
- package/cjs/configs/operations-all.js +33 -26
- package/cjs/configs/operations-recommended.js +59 -52
- package/cjs/configs/schema-all.js +29 -22
- package/cjs/configs/schema-recommended.js +73 -66
- package/cjs/configs/schema-relay.js +17 -10
- package/cjs/documents.js +18 -38
- package/{esm/estree-converter/converter.d.mts → cjs/estree-converter/converter.d.cts} +1 -1
- package/cjs/estree-converter/converter.js +16 -30
- package/cjs/estree-converter/index.d.cts +8 -0
- package/cjs/estree-converter/index.js +3 -23
- package/cjs/estree-converter/types.js +1 -14
- package/{esm/estree-converter/utils.d.mts → cjs/estree-converter/utils.d.cts} +3 -3
- package/cjs/estree-converter/utils.js +22 -40
- package/{esm/graphql-config.d.mts → cjs/graphql-config.d.cts} +3 -3
- package/cjs/graphql-config.js +16 -42
- package/cjs/index.d.cts +186 -0
- package/cjs/index.js +24 -41
- package/cjs/meta.d.cts +3 -0
- package/cjs/meta.js +5 -0
- package/cjs/package.json +1 -0
- package/{esm/parser.d.mts → cjs/parser.d.cts} +11 -4
- package/cjs/parser.js +35 -46
- package/{esm/processor.d.mts → cjs/processor.d.cts} +4 -0
- package/cjs/processor.js +25 -34
- package/{esm/rules/alphabetize.d.mts → cjs/rules/alphabetize/index.d.cts} +4 -4
- package/cjs/rules/{alphabetize.js → alphabetize/index.js} +69 -77
- package/{esm/rules/description-style.d.mts → cjs/rules/description-style/index.d.cts} +3 -3
- package/cjs/rules/{description-style.js → description-style/index.js} +7 -27
- package/{esm/rules/graphql-js-validation.d.mts → cjs/rules/graphql-js-validation.d.cts} +3 -3
- package/cjs/rules/graphql-js-validation.js +93 -70
- package/cjs/rules/{index.d.ts → index.d.cts} +17 -15
- package/cjs/rules/index.js +74 -60
- package/cjs/rules/{input-name.d.ts → input-name/index.d.cts} +6 -4
- package/cjs/rules/{input-name.js → input-name/index.js} +10 -28
- package/cjs/rules/{lone-executable-definition.d.ts → lone-executable-definition/index.d.cts} +3 -3
- package/cjs/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +13 -32
- package/cjs/rules/{match-document-filename.d.ts → match-document-filename/index.d.cts} +4 -4
- package/cjs/rules/{match-document-filename.js → match-document-filename/index.js} +21 -35
- package/{esm/rules/naming-convention.d.mts → cjs/rules/naming-convention/index.d.cts} +6 -4
- package/cjs/rules/{naming-convention.js → naming-convention/index.js} +41 -54
- package/cjs/rules/no-anonymous-operations/index.d.cts +13 -0
- package/cjs/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +9 -28
- package/{esm/rules/no-deprecated.d.mts → cjs/rules/no-deprecated/index.d.cts} +3 -3
- package/cjs/rules/{no-deprecated.js → no-deprecated/index.js} +11 -30
- package/cjs/rules/no-duplicate-fields/index.d.cts +13 -0
- package/cjs/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +8 -28
- package/cjs/rules/{no-hashtag-description.d.ts → no-hashtag-description/index.d.cts} +3 -3
- package/cjs/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +11 -31
- package/cjs/rules/no-one-place-fragments/index.d.cts +13 -0
- package/cjs/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +11 -29
- package/cjs/rules/{no-root-type.d.ts → no-root-type/index.d.cts} +3 -3
- package/cjs/rules/{no-root-type.js → no-root-type/index.js} +9 -29
- package/cjs/rules/no-scalar-result-type-on-mutation/index.d.cts +13 -0
- package/cjs/rules/no-scalar-result-type-on-mutation/index.js +69 -0
- package/cjs/rules/no-typename-prefix/index.d.cts +13 -0
- package/cjs/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +5 -25
- package/cjs/rules/no-unreachable-types/index.d.cts +13 -0
- package/cjs/rules/no-unreachable-types/index.js +155 -0
- package/cjs/rules/no-unused-fields/index.d.cts +34 -0
- package/cjs/rules/no-unused-fields/index.js +224 -0
- package/{esm/rules/relay-arguments.d.mts → cjs/rules/relay-arguments/index.d.cts} +3 -3
- package/cjs/rules/{relay-arguments.js → relay-arguments/index.js} +11 -30
- package/{esm/rules/relay-connection-types.d.mts → cjs/rules/relay-connection-types/index.d.cts} +3 -3
- package/cjs/rules/{relay-connection-types.js → relay-connection-types/index.js} +19 -40
- package/cjs/rules/{relay-edge-types.d.ts → relay-edge-types/index.d.cts} +6 -4
- package/cjs/rules/{relay-edge-types.js → relay-edge-types/index.js} +31 -44
- package/cjs/rules/relay-page-info/index.d.cts +13 -0
- package/cjs/rules/{relay-page-info.js → relay-page-info/index.js} +13 -31
- package/{esm/rules/require-deprecation-date.d.mts → cjs/rules/require-deprecation-date/index.d.cts} +3 -3
- package/cjs/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +13 -32
- package/cjs/rules/require-deprecation-reason/index.d.cts +13 -0
- package/cjs/rules/require-deprecation-reason/index.js +66 -0
- package/{esm/rules/require-description.d.mts → cjs/rules/require-description/index.d.cts} +3 -3
- package/cjs/rules/{require-description.js → require-description/index.js} +30 -44
- package/cjs/rules/require-field-of-type-query-in-mutation-result/index.d.cts +13 -0
- package/cjs/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +10 -29
- package/cjs/rules/require-import-fragment/index.d.cts +13 -0
- package/cjs/rules/{require-import-fragment.js → require-import-fragment/index.js} +16 -38
- package/cjs/rules/require-nullable-fields-with-oneof/index.d.cts +13 -0
- package/cjs/rules/require-nullable-fields-with-oneof/index.js +62 -0
- package/cjs/rules/require-nullable-result-in-root/index.d.cts +13 -0
- package/cjs/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +12 -31
- package/{esm/rules/require-selections.d.mts → cjs/rules/require-selections/index.d.cts} +3 -3
- package/cjs/rules/{require-selections.js → require-selections/index.js} +47 -45
- package/cjs/rules/require-type-pattern-with-oneof/index.d.cts +13 -0
- package/cjs/rules/require-type-pattern-with-oneof/index.js +63 -0
- package/{esm/rules/selection-set-depth.d.mts → cjs/rules/selection-set-depth/index.d.cts} +3 -3
- package/cjs/rules/{selection-set-depth.js → selection-set-depth/index.js} +16 -42
- package/cjs/rules/{strict-id-in-types.d.ts → strict-id-in-types/index.d.cts} +6 -4
- package/cjs/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +26 -39
- package/cjs/rules/unique-enum-value-names/index.d.cts +13 -0
- package/cjs/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +10 -29
- package/{esm/rules/unique-fragment-name.d.mts → cjs/rules/unique-fragment-name/index.d.cts} +3 -3
- package/cjs/rules/unique-fragment-name/index.js +87 -0
- package/cjs/rules/unique-operation-name/index.d.cts +13 -0
- package/cjs/rules/{unique-operation-name.js → unique-operation-name/index.js} +7 -27
- package/{esm/schema.d.mts → cjs/schema.d.cts} +3 -3
- package/cjs/schema.js +11 -36
- package/cjs/siblings.js +17 -33
- package/{esm/types.d.mts → cjs/types.d.cts} +2 -2
- package/cjs/types.js +1 -14
- package/{esm/utils.d.mts → cjs/utils.d.cts} +5 -5
- package/cjs/utils.js +94 -115
- package/{cjs → esm}/cache.d.ts +1 -1
- package/esm/configs/index.d.ts +24 -0
- package/esm/configs/index.js +22 -1
- package/esm/configs/operations-all.js +1 -1
- package/esm/documents.js +8 -3
- package/{cjs → esm}/estree-converter/index.d.ts +2 -2
- package/{cjs → esm}/estree-converter/utils.d.ts +3 -3
- package/esm/graphql-config.js +1 -1
- package/esm/index.d.ts +186 -0
- package/esm/index.js +10 -4
- package/esm/meta.d.ts +3 -0
- package/esm/meta.js +5 -0
- package/{cjs → esm}/parser.d.ts +8 -1
- package/esm/parser.js +10 -1
- package/{cjs → esm}/processor.d.ts +4 -0
- package/esm/processor.js +5 -0
- package/{cjs/rules/alphabetize.d.ts → esm/rules/alphabetize/index.d.ts} +5 -5
- package/esm/rules/{alphabetize.js → alphabetize/index.js} +26 -10
- package/{cjs/rules/description-style.d.ts → esm/rules/description-style/index.d.ts} +3 -3
- package/esm/rules/{description-style.js → description-style/index.js} +2 -2
- package/esm/rules/{index.d.mts → index.d.ts} +11 -9
- package/esm/rules/index.js +34 -34
- package/esm/rules/{input-name.d.mts → input-name/index.d.ts} +6 -4
- package/esm/rules/{input-name.js → input-name/index.js} +1 -1
- package/esm/rules/{lone-executable-definition.d.mts → lone-executable-definition/index.d.ts} +3 -3
- package/esm/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +2 -2
- package/esm/rules/{match-document-filename.d.mts → match-document-filename/index.d.ts} +4 -4
- package/esm/rules/{match-document-filename.js → match-document-filename/index.js} +4 -4
- package/{cjs/rules/naming-convention.d.ts → esm/rules/naming-convention/index.d.ts} +6 -4
- package/esm/rules/{naming-convention.js → naming-convention/index.js} +2 -2
- package/{cjs/rules/no-one-place-fragments.d.ts → esm/rules/no-anonymous-operations/index.d.ts} +3 -3
- package/esm/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +2 -2
- package/{cjs/rules/no-deprecated.d.ts → esm/rules/no-deprecated/index.d.ts} +3 -3
- package/esm/rules/{no-deprecated.js → no-deprecated/index.js} +2 -2
- package/{cjs/rules/no-scalar-result-type-on-mutation.d.ts → esm/rules/no-duplicate-fields/index.d.ts} +3 -3
- package/esm/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +1 -1
- package/esm/rules/{no-hashtag-description.d.mts → no-hashtag-description/index.d.ts} +3 -3
- package/esm/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +2 -2
- package/{cjs/rules/no-anonymous-operations.d.ts → esm/rules/no-one-place-fragments/index.d.ts} +3 -3
- package/esm/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +2 -2
- package/esm/rules/{no-root-type.d.mts → no-root-type/index.d.ts} +3 -3
- package/esm/rules/{no-root-type.js → no-root-type/index.js} +2 -2
- package/{cjs/rules/no-duplicate-fields.d.ts → esm/rules/no-scalar-result-type-on-mutation/index.d.ts} +3 -3
- package/esm/rules/{no-scalar-result-type-on-mutation.js → no-scalar-result-type-on-mutation/index.js} +2 -2
- package/esm/rules/no-typename-prefix/index.d.ts +13 -0
- package/esm/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +1 -1
- package/esm/rules/no-unreachable-types/index.d.ts +13 -0
- package/esm/rules/{no-unreachable-types.js → no-unreachable-types/index.js} +8 -8
- package/esm/rules/no-unused-fields/index.d.ts +34 -0
- package/esm/rules/no-unused-fields/index.js +224 -0
- package/{cjs/rules/relay-arguments.d.ts → esm/rules/relay-arguments/index.d.ts} +3 -3
- package/esm/rules/{relay-arguments.js → relay-arguments/index.js} +2 -2
- package/{cjs/rules/relay-connection-types.d.ts → esm/rules/relay-connection-types/index.d.ts} +3 -3
- package/esm/rules/{relay-connection-types.js → relay-connection-types/index.js} +1 -1
- package/esm/rules/{relay-edge-types.d.mts → relay-edge-types/index.d.ts} +6 -4
- package/esm/rules/{relay-edge-types.js → relay-edge-types/index.js} +3 -3
- package/esm/rules/relay-page-info/index.d.ts +13 -0
- package/esm/rules/{relay-page-info.js → relay-page-info/index.js} +4 -4
- package/{cjs/rules/require-deprecation-date.d.ts → esm/rules/require-deprecation-date/index.d.ts} +3 -3
- package/esm/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +3 -3
- package/esm/rules/require-deprecation-reason/index.d.ts +13 -0
- package/esm/rules/{require-deprecation-reason.js → require-deprecation-reason/index.js} +3 -3
- package/{cjs/rules/require-description.d.ts → esm/rules/require-description/index.d.ts} +3 -3
- package/esm/rules/{require-description.js → require-description/index.js} +2 -2
- package/esm/rules/require-field-of-type-query-in-mutation-result/index.d.ts +13 -0
- package/esm/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +2 -2
- package/esm/rules/require-import-fragment/index.d.ts +13 -0
- package/esm/rules/{require-import-fragment.js → require-import-fragment/index.js} +9 -4
- package/esm/rules/require-nullable-fields-with-oneof/index.d.ts +13 -0
- package/esm/rules/{require-nullable-fields-with-oneof.js → require-nullable-fields-with-oneof/index.js} +2 -2
- package/esm/rules/require-nullable-result-in-root/index.d.ts +13 -0
- package/esm/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +2 -2
- package/{cjs/rules/require-selections.d.ts → esm/rules/require-selections/index.d.ts} +3 -3
- package/esm/rules/{require-selections.js → require-selections/index.js} +13 -7
- package/esm/rules/require-type-pattern-with-oneof/index.d.ts +13 -0
- package/esm/rules/{require-type-pattern-with-oneof.js → require-type-pattern-with-oneof/index.js} +2 -2
- package/{cjs/rules/selection-set-depth.d.ts → esm/rules/selection-set-depth/index.d.ts} +3 -3
- package/esm/rules/{selection-set-depth.js → selection-set-depth/index.js} +3 -3
- package/esm/rules/{strict-id-in-types.d.mts → strict-id-in-types/index.d.ts} +6 -4
- package/esm/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +2 -2
- package/esm/rules/unique-enum-value-names/index.d.ts +13 -0
- package/esm/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +2 -2
- package/{cjs/rules/unique-fragment-name.d.ts → esm/rules/unique-fragment-name/index.d.ts} +3 -3
- package/esm/rules/{unique-fragment-name.js → unique-fragment-name/index.js} +3 -3
- package/esm/rules/unique-operation-name/index.d.ts +13 -0
- package/esm/rules/{unique-operation-name.js → unique-operation-name/index.js} +2 -2
- package/{cjs → esm}/utils.d.ts +2 -2
- package/esm/utils.js +39 -16
- package/{index.browser.mjs → index.browser.js} +352 -181
- package/package.json +7 -11
- package/cjs/configs/index.d.ts +0 -174
- package/cjs/flat-configs.d.ts +0 -307
- package/cjs/flat-configs.js +0 -55
- package/cjs/index.d.ts +0 -26
- package/cjs/rules/no-scalar-result-type-on-mutation.js +0 -88
- package/cjs/rules/no-typename-prefix.d.ts +0 -13
- package/cjs/rules/no-unreachable-types.d.ts +0 -13
- package/cjs/rules/no-unreachable-types.js +0 -176
- package/cjs/rules/no-unused-fields.d.ts +0 -13
- package/cjs/rules/no-unused-fields.js +0 -132
- package/cjs/rules/relay-page-info.d.ts +0 -13
- package/cjs/rules/require-deprecation-reason.d.ts +0 -13
- package/cjs/rules/require-deprecation-reason.js +0 -85
- package/cjs/rules/require-field-of-type-query-in-mutation-result.d.ts +0 -13
- package/cjs/rules/require-import-fragment.d.ts +0 -13
- package/cjs/rules/require-nullable-fields-with-oneof.d.ts +0 -13
- package/cjs/rules/require-nullable-fields-with-oneof.js +0 -81
- package/cjs/rules/require-nullable-result-in-root.d.ts +0 -13
- package/cjs/rules/require-type-pattern-with-oneof.d.ts +0 -13
- package/cjs/rules/require-type-pattern-with-oneof.js +0 -83
- package/cjs/rules/unique-enum-value-names.d.ts +0 -13
- package/cjs/rules/unique-fragment-name.js +0 -106
- package/cjs/rules/unique-operation-name.d.ts +0 -13
- 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/flat-configs.js +0 -36
- package/esm/index.d.mts +0 -26
- 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/no-unused-fields.js +0 -113
- 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/cjs/{documents.d.ts → documents.d.cts} +0 -0
- /package/cjs/estree-converter/{types.d.ts → types.d.cts} +0 -0
- /package/cjs/{siblings.d.ts → siblings.d.cts} +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/esm/{documents.d.mts → documents.d.ts} +0 -0
- /package/{cjs → esm}/estree-converter/converter.d.ts +0 -0
- /package/esm/estree-converter/{types.d.mts → types.d.ts} +0 -0
- /package/{cjs → esm}/graphql-config.d.ts +0 -0
- /package/{cjs → esm}/rules/graphql-js-validation.d.ts +0 -0
- /package/{cjs → esm}/schema.d.ts +0 -0
- /package/esm/{siblings.d.mts → siblings.d.ts} +0 -0
- /package/{cjs → esm}/types.d.ts +0 -0
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.js';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'graphql-config';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
@@ -34,7 +34,9 @@ declare const schema: {
|
|
34
34
|
};
|
35
35
|
};
|
36
36
|
};
|
37
|
-
type RuleOptions = FromSchema<typeof schema
|
37
|
+
type RuleOptions = FromSchema<typeof schema, {
|
38
|
+
keepDefaultedPropertiesOptional: true;
|
39
|
+
}>;
|
38
40
|
declare const rule: GraphQLESLintRule<RuleOptions, true>;
|
39
41
|
|
40
42
|
export { type RuleOptions, rule };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import {
|
3
3
|
isObjectType,
|
4
4
|
isScalarType,
|
@@ -6,11 +6,11 @@ import {
|
|
6
6
|
visit
|
7
7
|
} from "graphql";
|
8
8
|
import { getDocumentNodeFromSchema } from "@graphql-tools/utils";
|
9
|
-
import { getTypeName, requireGraphQLSchemaFromContext } from "
|
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) {
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { isScalarType, Kind } from "graphql";
|
3
|
-
import { REPORT_ON_FIRST_CHARACTER, requireGraphQLSchemaFromContext } from "
|
4
|
-
import { NON_OBJECT_TYPES } from "
|
3
|
+
import { REPORT_ON_FIRST_CHARACTER, requireGraphQLSchemaFromContext } from "../../utils.js";
|
4
|
+
import { NON_OBJECT_TYPES } from "../relay-connection-types/index.js";
|
5
5
|
const RULE_ID = "relay-page-info", MESSAGE_MUST_EXIST = "MESSAGE_MUST_EXIST", MESSAGE_MUST_BE_OBJECT_TYPE = "MESSAGE_MUST_BE_OBJECT_TYPE", notPageInfoTypesSelector = `:matches(${NON_OBJECT_TYPES})[name.value=PageInfo] > .name`;
|
6
6
|
let hasPageInfoChecked = !1;
|
7
7
|
const rule = {
|
@@ -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), {
|
package/{cjs/rules/require-deprecation-date.d.ts → esm/rules/require-deprecation-date/index.d.ts}
RENAMED
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.js';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'graphql-config';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
2
|
-
import { valueFromNode } from "
|
3
|
-
import { getNodeName } from "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
|
+
import { valueFromNode } from "../../estree-converter/index.js";
|
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 = {
|
5
5
|
type: "array",
|
6
6
|
maxItems: 1,
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
2
|
-
import { valueFromNode } from "
|
3
|
-
import { getNodeName } from "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
|
+
import { valueFromNode } from "../../estree-converter/index.js";
|
3
|
+
import { getNodeName } from "../../utils.js";
|
4
4
|
const rule = {
|
5
5
|
meta: {
|
6
6
|
docs: {
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { Kind } from 'graphql';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.js';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql-config';
|
6
6
|
import 'json-schema-to-ts';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const RULE_ID = "require-description";
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind, TokenKind } from "graphql";
|
3
3
|
import { getRootTypeNames } from "@graphql-tools/utils";
|
4
4
|
import {
|
@@ -6,7 +6,7 @@ import {
|
|
6
6
|
getNodeName,
|
7
7
|
requireGraphQLSchemaFromContext,
|
8
8
|
TYPES_KINDS
|
9
|
-
} from "
|
9
|
+
} from "../../utils.js";
|
10
10
|
const RULE_ID = "require-description", ALLOWED_KINDS = [
|
11
11
|
...TYPES_KINDS,
|
12
12
|
Kind.DIRECTIVE_DEFINITION,
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { isObjectType } from "graphql";
|
3
|
-
import { getTypeName, requireGraphQLSchemaFromContext } from "
|
3
|
+
import { getTypeName, requireGraphQLSchemaFromContext } from "../../utils.js";
|
4
4
|
const RULE_ID = "require-field-of-type-query-in-mutation-result", rule = {
|
5
5
|
meta: {
|
6
6
|
type: "suggestion",
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import path from "node:path";
|
3
|
-
import { requireSiblingsOperations } from "
|
3
|
+
import { requireSiblingsOperations, slash } from "../../utils.js";
|
4
4
|
const RULE_ID = "require-import-fragment", SUGGESTION_ID = "add-import-expression", rule = {
|
5
5
|
meta: {
|
6
6
|
type: "suggestion",
|
@@ -85,7 +85,7 @@ const RULE_ID = "require-import-fragment", SUGGESTION_ID = "add-import-expressio
|
|
85
85
|
).test(comment.value)) continue;
|
86
86
|
const extractedImportPath = comment.value.match(/(["'])((?:\1|.)*?)\1/)?.[2];
|
87
87
|
if (!extractedImportPath) continue;
|
88
|
-
const importPath = path.join(
|
88
|
+
const importPath = path.join(filePath, "..", extractedImportPath);
|
89
89
|
if (fragmentsFromSiblings.some(
|
90
90
|
(source) => source.filePath === importPath
|
91
91
|
)) return;
|
@@ -93,7 +93,12 @@ const RULE_ID = "require-import-fragment", SUGGESTION_ID = "add-import-expressio
|
|
93
93
|
if (fragmentsFromSiblings.some(
|
94
94
|
(source) => source.filePath === filePath
|
95
95
|
)) return;
|
96
|
-
const suggestedFilePaths = fragmentsFromSiblings.length ? fragmentsFromSiblings.map(
|
96
|
+
const suggestedFilePaths = fragmentsFromSiblings.length ? fragmentsFromSiblings.map(
|
97
|
+
(o) => (
|
98
|
+
// Use always forward slash for suggested import path
|
99
|
+
slash(path.relative(path.dirname(filePath), o.filePath))
|
100
|
+
)
|
101
|
+
) : ["CHANGE_ME.graphql"];
|
97
102
|
context.report({
|
98
103
|
node,
|
99
104
|
messageId: RULE_ID,
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind } from "graphql";
|
3
|
-
import { getNodeName } from "
|
3
|
+
import { getNodeName } from "../../utils.js";
|
4
4
|
const RULE_ID = "require-nullable-fields-with-oneof", rule = {
|
5
5
|
meta: {
|
6
6
|
type: "suggestion",
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
package/esm/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js}
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind } from "graphql";
|
3
|
-
import { getNodeName, requireGraphQLSchemaFromContext, truthy } from "
|
3
|
+
import { getNodeName, requireGraphQLSchemaFromContext, truthy } from "../../utils.js";
|
4
4
|
const RULE_ID = "require-nullable-result-in-root", rule = {
|
5
5
|
meta: {
|
6
6
|
type: "suggestion",
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.js';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'graphql-config';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import {
|
3
3
|
GraphQLInterfaceType,
|
4
4
|
GraphQLObjectType,
|
@@ -9,13 +9,13 @@ import {
|
|
9
9
|
visitWithTypeInfo
|
10
10
|
} from "graphql";
|
11
11
|
import { asArray } from "@graphql-tools/utils";
|
12
|
-
import { getBaseType } from "
|
12
|
+
import { getBaseType } from "../../estree-converter/index.js";
|
13
13
|
import {
|
14
14
|
ARRAY_DEFAULT_OPTIONS,
|
15
15
|
englishJoinWords,
|
16
16
|
requireGraphQLSchemaFromContext,
|
17
17
|
requireSiblingsOperations
|
18
|
-
} from "
|
18
|
+
} from "../../utils.js";
|
19
19
|
const RULE_ID = "require-selections", DEFAULT_ID_FIELD_NAME = "id", schema = {
|
20
20
|
definitions: {
|
21
21
|
asString: {
|
@@ -131,13 +131,19 @@ Include it in your selection set{{ addition }}.`
|
|
131
131
|
const rawType = getBaseType(type);
|
132
132
|
if (rawType instanceof GraphQLObjectType || rawType instanceof GraphQLInterfaceType)
|
133
133
|
checkFields(rawType);
|
134
|
-
else if (rawType instanceof GraphQLUnionType)
|
135
|
-
for (const selection of node.selections)
|
134
|
+
else if (rawType instanceof GraphQLUnionType)
|
135
|
+
for (const selection of node.selections) {
|
136
|
+
const types = rawType.getTypes();
|
136
137
|
if (selection.kind === Kind.INLINE_FRAGMENT) {
|
137
|
-
const t =
|
138
|
+
const t = types.find((t2) => t2.name === selection.typeCondition.name.value);
|
138
139
|
t && checkFields(t);
|
140
|
+
} else if (selection.kind === Kind.FRAGMENT_SPREAD) {
|
141
|
+
const [foundSpread] = siblings.getFragment(selection.name.value);
|
142
|
+
if (!foundSpread) return;
|
143
|
+
const fragmentSpread = foundSpread.document, t = fragmentSpread.typeCondition.name.value === rawType.name ? rawType : types.find((t2) => t2.name === fragmentSpread.typeCondition.name.value);
|
144
|
+
checkedFragmentSpreads.add(fragmentSpread.name.value), checkSelections(fragmentSpread.selectionSet, t, loc, parent, checkedFragmentSpreads);
|
139
145
|
}
|
140
|
-
|
146
|
+
}
|
141
147
|
function checkFields(rawType2) {
|
142
148
|
const fields = rawType2.getFields();
|
143
149
|
if (!idNames.some((name) => fields[name]))
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.js';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'graphql-config';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind } from "graphql";
|
3
3
|
import depthLimit from "graphql-depth-limit";
|
4
|
-
import { ARRAY_DEFAULT_OPTIONS, logger, requireSiblingsOperations } from "
|
4
|
+
import { ARRAY_DEFAULT_OPTIONS, logger, requireSiblingsOperations } from "../../utils.js";
|
5
5
|
const RULE_ID = "selection-set-depth", schema = {
|
6
6
|
type: "array",
|
7
7
|
minItems: 1,
|
@@ -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({
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.js';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'graphql-config';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
@@ -60,7 +60,9 @@ declare const schema: {
|
|
60
60
|
};
|
61
61
|
};
|
62
62
|
};
|
63
|
-
type RuleOptions = FromSchema<typeof schema
|
63
|
+
type RuleOptions = FromSchema<typeof schema, {
|
64
|
+
keepDefaultedPropertiesOptional: true;
|
65
|
+
}>;
|
64
66
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
65
67
|
|
66
68
|
export { type RuleOptions, rule };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind } from "graphql";
|
3
3
|
import {
|
4
4
|
ARRAY_DEFAULT_OPTIONS,
|
@@ -6,7 +6,7 @@ import {
|
|
6
6
|
englishJoinWords,
|
7
7
|
requireGraphQLSchemaFromContext,
|
8
8
|
truthy
|
9
|
-
} from "
|
9
|
+
} from "../../utils.js";
|
10
10
|
const RULE_ID = "strict-id-in-types", schema = {
|
11
11
|
type: "array",
|
12
12
|
maxItems: 1,
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { ExecutableDefinitionNode } from 'graphql';
|
2
|
-
import { GraphQLESTreeNode } from '
|
3
|
-
import { GraphQLESLintRuleContext, GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESTreeNode } from '../../estree-converter/types.js';
|
3
|
+
import { GraphQLESLintRuleContext, GraphQLESLintRule } from '../../types.js';
|
4
4
|
import 'eslint';
|
5
5
|
import 'estree';
|
6
6
|
import 'graphql-config';
|
7
7
|
import 'json-schema-to-ts';
|
8
|
-
import '
|
8
|
+
import '../../siblings.js';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const checkNode: (context: GraphQLESLintRuleContext, node: GraphQLESTreeNode<ExecutableDefinitionNode>, ruleId: string) => void;
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { relative } from "node:path";
|
3
3
|
import { Kind } from "graphql";
|
4
|
-
import { CWD,
|
4
|
+
import { CWD, requireSiblingsOperations, slash, VIRTUAL_DOCUMENT_REGEX } from "../../utils.js";
|
5
5
|
const RULE_ID = "unique-fragment-name", checkNode = (context, node, ruleId) => {
|
6
6
|
const documentName = node.name.value, siblings = requireSiblingsOperations(ruleId, context), siblingDocuments = node.kind === Kind.FRAGMENT_DEFINITION ? siblings.getFragment(documentName) : siblings.getOperation(documentName), filepath = context.filename, conflictingDocuments = siblingDocuments.filter((f) => {
|
7
|
-
const isSameName = f.document.name?.value === documentName, isSamePath =
|
7
|
+
const isSameName = f.document.name?.value === documentName, isSamePath = slash(f.filePath) === slash(filepath);
|
8
8
|
return isSameName && !isSamePath;
|
9
9
|
});
|
10
10
|
conflictingDocuments.length > 0 && context.report({
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.js';
|
8
|
+
import '../../siblings.js';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import "
|
2
|
-
import { checkNode } from "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
|
+
import { checkNode } from "../unique-fragment-name/index.js";
|
3
3
|
const RULE_ID = "unique-operation-name", rule = {
|
4
4
|
meta: {
|
5
5
|
type: "suggestion",
|
package/{cjs → esm}/utils.d.ts
RENAMED
@@ -14,7 +14,7 @@ declare const logger: {
|
|
14
14
|
error: (...args: unknown[]) => void;
|
15
15
|
warn: (...args: unknown[]) => void;
|
16
16
|
};
|
17
|
-
declare const
|
17
|
+
declare const slash: (path: string) => string;
|
18
18
|
declare const VIRTUAL_DOCUMENT_REGEX: RegExp;
|
19
19
|
declare const CWD: string;
|
20
20
|
declare const getTypeName: (node: ASTNode) => string;
|
@@ -42,4 +42,4 @@ declare function truthy<T>(value: T): value is Truthy<T>;
|
|
42
42
|
declare function displayNodeName(node: GraphQLESTreeNode<ASTNode>): string;
|
43
43
|
declare function getNodeName(node: GraphQLESTreeNode<ASTNode>): string;
|
44
44
|
|
45
|
-
export { ARRAY_DEFAULT_OPTIONS, CWD, type CaseStyle, REPORT_ON_FIRST_CHARACTER, TYPES_KINDS, VIRTUAL_DOCUMENT_REGEX, camelCase, convertCase, displayNodeName, englishJoinWords, getLocation, getNodeName, getTypeName, logger,
|
45
|
+
export { ARRAY_DEFAULT_OPTIONS, CWD, type CaseStyle, REPORT_ON_FIRST_CHARACTER, TYPES_KINDS, VIRTUAL_DOCUMENT_REGEX, camelCase, convertCase, displayNodeName, englishJoinWords, getLocation, getNodeName, getTypeName, logger, pascalCase, requireGraphQLSchemaFromContext, requireSiblingsOperations, slash, truthy };
|
package/esm/utils.js
CHANGED
@@ -29,7 +29,7 @@ const chalk = {
|
|
29
29
|
// eslint-disable-next-line no-console
|
30
30
|
console.warn(chalk.yellow("warning"), "[graphql-eslint]", ...args)
|
31
31
|
)
|
32
|
-
},
|
32
|
+
}, slash = (path) => path.replaceAll("\\", "/"), VIRTUAL_DOCUMENT_REGEX = /[/\\]\d+_document.graphql$/, CWD = process.cwd(), getTypeName = (node) => "type" in node ? getTypeName(node.type) : "name" in node && node.name ? node.name.value : "", TYPES_KINDS = [
|
33
33
|
Kind.OBJECT_TYPE_DEFINITION,
|
34
34
|
Kind.INTERFACE_TYPE_DEFINITION,
|
35
35
|
Kind.ENUM_TYPE_DEFINITION,
|
@@ -78,26 +78,49 @@ function truthy(value) {
|
|
78
78
|
return !!value;
|
79
79
|
}
|
80
80
|
const DisplayNodeNameMap = {
|
81
|
-
[Kind.
|
82
|
-
[Kind.
|
83
|
-
[Kind.
|
84
|
-
[Kind.
|
81
|
+
[Kind.ARGUMENT]: "argument",
|
82
|
+
[Kind.BOOLEAN]: "boolean",
|
83
|
+
[Kind.DIRECTIVE_DEFINITION]: "directive",
|
84
|
+
[Kind.DIRECTIVE]: "directive",
|
85
|
+
[Kind.DOCUMENT]: "document",
|
85
86
|
[Kind.ENUM_TYPE_DEFINITION]: "enum",
|
86
87
|
[Kind.ENUM_TYPE_EXTENSION]: "enum",
|
87
|
-
[Kind.
|
88
|
+
[Kind.ENUM_VALUE_DEFINITION]: "enum value",
|
89
|
+
[Kind.ENUM]: "enum",
|
90
|
+
[Kind.FIELD_DEFINITION]: "field",
|
91
|
+
[Kind.FIELD]: "field",
|
92
|
+
[Kind.FLOAT]: "float",
|
93
|
+
[Kind.FRAGMENT_DEFINITION]: "fragment",
|
94
|
+
[Kind.FRAGMENT_SPREAD]: "fragment spread",
|
95
|
+
[Kind.INLINE_FRAGMENT]: "inline fragment",
|
88
96
|
[Kind.INPUT_OBJECT_TYPE_DEFINITION]: "input",
|
89
97
|
[Kind.INPUT_OBJECT_TYPE_EXTENSION]: "input",
|
90
|
-
[Kind.UNION_TYPE_DEFINITION]: "union",
|
91
|
-
[Kind.UNION_TYPE_EXTENSION]: "union",
|
92
|
-
[Kind.DIRECTIVE_DEFINITION]: "directive",
|
93
|
-
[Kind.FIELD_DEFINITION]: "field",
|
94
|
-
[Kind.ENUM_VALUE_DEFINITION]: "enum value",
|
95
98
|
[Kind.INPUT_VALUE_DEFINITION]: "input value",
|
96
|
-
[Kind.
|
97
|
-
[Kind.
|
98
|
-
[Kind.
|
99
|
+
[Kind.INT]: "int",
|
100
|
+
[Kind.INTERFACE_TYPE_DEFINITION]: "interface",
|
101
|
+
[Kind.INTERFACE_TYPE_EXTENSION]: "interface",
|
102
|
+
[Kind.LIST_TYPE]: "list type",
|
103
|
+
[Kind.LIST]: "list",
|
104
|
+
[Kind.NAME]: "name",
|
105
|
+
[Kind.NAMED_TYPE]: "named type",
|
106
|
+
[Kind.NON_NULL_TYPE]: "non-null type",
|
107
|
+
[Kind.NULL]: "null",
|
108
|
+
[Kind.OBJECT_FIELD]: "object field",
|
109
|
+
[Kind.OBJECT_TYPE_DEFINITION]: "type",
|
110
|
+
[Kind.OBJECT_TYPE_EXTENSION]: "type",
|
111
|
+
[Kind.OBJECT]: "object",
|
99
112
|
[Kind.OPERATION_DEFINITION]: "operation",
|
100
|
-
[Kind.
|
113
|
+
[Kind.OPERATION_TYPE_DEFINITION]: "operation type",
|
114
|
+
[Kind.SCALAR_TYPE_DEFINITION]: "scalar",
|
115
|
+
[Kind.SCALAR_TYPE_EXTENSION]: "scalar",
|
116
|
+
[Kind.SCHEMA_DEFINITION]: "schema",
|
117
|
+
[Kind.SCHEMA_EXTENSION]: "schema",
|
118
|
+
[Kind.SELECTION_SET]: "selection set",
|
119
|
+
[Kind.STRING]: "string",
|
120
|
+
[Kind.UNION_TYPE_DEFINITION]: "union",
|
121
|
+
[Kind.UNION_TYPE_EXTENSION]: "union",
|
122
|
+
[Kind.VARIABLE_DEFINITION]: "variable",
|
123
|
+
[Kind.VARIABLE]: "variable"
|
101
124
|
};
|
102
125
|
function displayNodeName(node) {
|
103
126
|
return `${node.kind === Kind.OPERATION_DEFINITION ? node.operation : DisplayNodeNameMap[node.kind]} "${"alias" in node && node.alias?.value || "name" in node && node.name?.value}"`;
|
@@ -136,9 +159,9 @@ export {
|
|
136
159
|
getNodeName,
|
137
160
|
getTypeName,
|
138
161
|
logger,
|
139
|
-
normalizePath,
|
140
162
|
pascalCase,
|
141
163
|
requireGraphQLSchemaFromContext,
|
142
164
|
requireSiblingsOperations,
|
165
|
+
slash,
|
143
166
|
truthy
|
144
167
|
};
|