@graphql-eslint/eslint-plugin 4.0.0-alpha.1 → 4.0.0-alpha.10
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 +184 -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/{esm/rules/index.d.mts → cjs/rules/index.d.cts} +8 -8
- 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 +13 -0
- package/cjs/rules/{no-unused-fields.js → no-unused-fields/index.js} +16 -34
- 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 +184 -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/{cjs → esm}/rules/index.d.ts +10 -10
- 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 +13 -0
- package/esm/rules/{no-unused-fields.js → no-unused-fields/index.js} +8 -7
- 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} +171 -110
- 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/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/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
package/esm/parser.js
CHANGED
@@ -5,6 +5,7 @@ import { parseGraphQLSDL } from "@graphql-tools/utils";
|
|
5
5
|
import { getDocuments } from "./documents.js";
|
6
6
|
import { convertToESTree, extractComments, extractTokens } from "./estree-converter/index.js";
|
7
7
|
import { loadGraphQLConfig } from "./graphql-config.js";
|
8
|
+
import { version } from "./meta.js";
|
8
9
|
import { getSchema } from "./schema.js";
|
9
10
|
import { getSiblings } from "./siblings.js";
|
10
11
|
import { CWD, VIRTUAL_DOCUMENT_REGEX } from "./utils.js";
|
@@ -71,6 +72,14 @@ function parseForESLint(code, options) {
|
|
71
72
|
throw error;
|
72
73
|
}
|
73
74
|
}
|
75
|
+
const parser = {
|
76
|
+
parseForESLint,
|
77
|
+
meta: {
|
78
|
+
name: "@graphql-eslint/parser",
|
79
|
+
version
|
80
|
+
}
|
81
|
+
};
|
74
82
|
export {
|
75
|
-
parseForESLint
|
83
|
+
parseForESLint,
|
84
|
+
parser
|
76
85
|
};
|
@@ -5,6 +5,10 @@ type Block = Linter.ProcessorFile & {
|
|
5
5
|
offset: number;
|
6
6
|
};
|
7
7
|
declare const processor: {
|
8
|
+
meta: {
|
9
|
+
name: string;
|
10
|
+
version: string | undefined;
|
11
|
+
};
|
8
12
|
supportsAutofix: true;
|
9
13
|
preprocess(code: string, filePath: string): (string | Block)[];
|
10
14
|
postprocess(messages: Linter.LintMessage[][], filePath: string): Linter.LintMessage[];
|
package/esm/processor.js
CHANGED
@@ -5,10 +5,15 @@ import {
|
|
5
5
|
} from "@graphql-tools/graphql-tag-pluck";
|
6
6
|
import { asArray } from "@graphql-tools/utils";
|
7
7
|
import { loadOnDiskGraphQLConfig } from "./graphql-config.js";
|
8
|
+
import { version } from "./meta.js";
|
8
9
|
import { CWD, REPORT_ON_FIRST_CHARACTER, truthy } from "./utils.js";
|
9
10
|
const blocksMap = /* @__PURE__ */ new Map();
|
10
11
|
let onDiskConfig, onDiskConfigLoaded = !1;
|
11
12
|
const RELEVANT_KEYWORDS = ["gql", "graphql", "GraphQL"], processor = {
|
13
|
+
meta: {
|
14
|
+
name: "@graphql-eslint/processor",
|
15
|
+
version
|
16
|
+
},
|
12
17
|
supportsAutofix: !0,
|
13
18
|
preprocess(code, filePath) {
|
14
19
|
onDiskConfigLoaded || (onDiskConfig = loadOnDiskGraphQLConfig(filePath), onDiskConfigLoaded = !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: {
|
@@ -45,7 +45,7 @@ declare const schema: {
|
|
45
45
|
};
|
46
46
|
readonly arguments: {
|
47
47
|
readonly items: {
|
48
|
-
readonly enum: ("
|
48
|
+
readonly enum: ("Field" | "Directive" | "FieldDefinition" | "DirectiveDefinition")[];
|
49
49
|
};
|
50
50
|
readonly description: "Arguments of fields and directives.";
|
51
51
|
readonly type: "array";
|
@@ -58,7 +58,7 @@ declare const schema: {
|
|
58
58
|
};
|
59
59
|
readonly groups: {
|
60
60
|
readonly minItems: 2;
|
61
|
-
readonly description:
|
61
|
+
readonly description: string;
|
62
62
|
readonly type: "array";
|
63
63
|
readonly uniqueItems: true;
|
64
64
|
readonly items: {
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import {
|
3
3
|
Kind
|
4
4
|
} from "graphql";
|
5
5
|
import lowerCase from "lodash.lowercase";
|
6
|
-
import { ARRAY_DEFAULT_OPTIONS, displayNodeName, truthy } from "
|
6
|
+
import { ARRAY_DEFAULT_OPTIONS, displayNodeName, truthy } from "../../utils.js";
|
7
7
|
const RULE_ID = "alphabetize", fieldsEnum = [
|
8
8
|
Kind.OBJECT_TYPE_DEFINITION,
|
9
9
|
Kind.INTERFACE_TYPE_DEFINITION,
|
@@ -61,7 +61,14 @@ const RULE_ID = "alphabetize", fieldsEnum = [
|
|
61
61
|
groups: {
|
62
62
|
...ARRAY_DEFAULT_OPTIONS,
|
63
63
|
minItems: 2,
|
64
|
-
description:
|
64
|
+
description: [
|
65
|
+
"Order group. Example: `['...', 'id', '*', '{']` where:",
|
66
|
+
"- `...` stands for fragment spreads",
|
67
|
+
"- `id` stands for field with name `id`",
|
68
|
+
"- `*` stands for everything else",
|
69
|
+
"- `{` stands for fields `selection set`"
|
70
|
+
].join(`
|
71
|
+
`)
|
65
72
|
}
|
66
73
|
}
|
67
74
|
}
|
@@ -183,7 +190,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
|
|
183
190
|
selections: selectionsEnum,
|
184
191
|
variables: !0,
|
185
192
|
arguments: [Kind.FIELD, Kind.DIRECTIVE],
|
186
|
-
groups: ["
|
193
|
+
groups: ["...", "id", "*", "{"]
|
187
194
|
}
|
188
195
|
]
|
189
196
|
}
|
@@ -221,20 +228,18 @@ const RULE_ID = "alphabetize", fieldsEnum = [
|
|
221
228
|
}
|
222
229
|
function checkNodes(nodes = []) {
|
223
230
|
for (let i = 1; i < nodes.length; i += 1) {
|
224
|
-
const currNode = nodes[i], currName =
|
231
|
+
const currNode = nodes[i], currName = getName(currNode);
|
225
232
|
if (!currName)
|
226
233
|
continue;
|
227
|
-
const prevNode = nodes[i - 1], prevName =
|
234
|
+
const prevNode = nodes[i - 1], prevName = getName(prevNode);
|
228
235
|
if (prevName) {
|
229
236
|
const compareResult = prevName.localeCompare(currName), { groups } = opts;
|
230
237
|
let shouldSortByGroup = !1;
|
231
238
|
if (groups?.length) {
|
232
239
|
if (!groups.includes("*"))
|
233
240
|
throw new Error("`groups` option should contain `*` string.");
|
234
|
-
|
235
|
-
indexForPrev
|
236
|
-
let indexForCurr = groups.indexOf(currName);
|
237
|
-
if (indexForCurr === -1 && (indexForCurr = groups.indexOf("*")), shouldSortByGroup = indexForPrev - indexForCurr > 0, indexForPrev < indexForCurr)
|
241
|
+
const indexForPrev = getIndex({ node: prevNode, groups }), indexForCurr = getIndex({ node: currNode, groups });
|
242
|
+
if (shouldSortByGroup = indexForPrev - indexForCurr > 0, indexForPrev < indexForCurr)
|
238
243
|
continue;
|
239
244
|
}
|
240
245
|
if (!shouldSortByGroup && !(compareResult === 1) && (!(compareResult === 0) || !prevNode.kind.endsWith("Extension") || currNode.kind.endsWith("Extension")))
|
@@ -294,6 +299,17 @@ const RULE_ID = "alphabetize", fieldsEnum = [
|
|
294
299
|
}), listeners;
|
295
300
|
}
|
296
301
|
};
|
302
|
+
function getIndex({
|
303
|
+
node,
|
304
|
+
groups
|
305
|
+
}) {
|
306
|
+
let index = groups.indexOf(getName(node));
|
307
|
+
return index === -1 && "selectionSet" in node && node.selectionSet && (index = groups.indexOf("{")), index === -1 && node.kind === Kind.FRAGMENT_SPREAD && (index = groups.indexOf("...")), index === -1 && (index = groups.indexOf("*")), index;
|
308
|
+
}
|
309
|
+
function getName(node) {
|
310
|
+
return "alias" in node && node.alias?.value || //
|
311
|
+
"name" in node && node.name?.value || "";
|
312
|
+
}
|
297
313
|
export {
|
298
314
|
rule
|
299
315
|
};
|
@@ -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 { RuleOptions } from './require-description.js';
|
1
|
+
import { RuleOptions } from './require-description/index.js';
|
2
2
|
import { CaseStyle } from '../utils.js';
|
3
3
|
import * as graphql from 'graphql';
|
4
4
|
import { GraphQLESLintRule } from '../types.js';
|
@@ -12,16 +12,16 @@ import 'json-schema-to-ts';
|
|
12
12
|
|
13
13
|
declare const rules: {
|
14
14
|
alphabetize: GraphQLESLintRule<{
|
15
|
+
values?: boolean | undefined;
|
15
16
|
definitions?: boolean | undefined;
|
16
17
|
selections?: ("OperationDefinition" | "FragmentDefinition")[] | undefined;
|
17
|
-
arguments?: ("
|
18
|
-
values?: boolean | undefined;
|
18
|
+
arguments?: ("Field" | "Directive" | "FieldDefinition" | "DirectiveDefinition")[] | undefined;
|
19
19
|
fields?: ("ObjectTypeDefinition" | "InterfaceTypeDefinition" | "InputObjectTypeDefinition")[] | undefined;
|
20
20
|
variables?: boolean | undefined;
|
21
21
|
groups?: string[] | undefined;
|
22
22
|
}[]>;
|
23
23
|
'description-style': GraphQLESLintRule<{
|
24
|
-
style
|
24
|
+
style: "block" | "inline";
|
25
25
|
}[]>;
|
26
26
|
'input-name': GraphQLESLintRule<{
|
27
27
|
checkInputType?: boolean | undefined;
|
@@ -33,7 +33,7 @@ declare const rules: {
|
|
33
33
|
ignore?: (graphql.OperationTypeNode | "fragment")[] | undefined;
|
34
34
|
}[]>;
|
35
35
|
'match-document-filename': GraphQLESLintRule<{
|
36
|
-
|
36
|
+
fragment?: (CaseStyle | "matchDocumentStyle") | {
|
37
37
|
style?: (CaseStyle | "matchDocumentStyle") | undefined;
|
38
38
|
suffix?: string | undefined;
|
39
39
|
prefix?: string | undefined;
|
@@ -48,7 +48,7 @@ declare const rules: {
|
|
48
48
|
suffix?: string | undefined;
|
49
49
|
prefix?: string | undefined;
|
50
50
|
} | undefined;
|
51
|
-
|
51
|
+
query?: (CaseStyle | "matchDocumentStyle") | {
|
52
52
|
style?: (CaseStyle | "matchDocumentStyle") | undefined;
|
53
53
|
suffix?: string | undefined;
|
54
54
|
prefix?: string | undefined;
|
@@ -57,8 +57,8 @@ declare const rules: {
|
|
57
57
|
}[]>;
|
58
58
|
'naming-convention': GraphQLESLintRule<{
|
59
59
|
[x: string]: unknown;
|
60
|
-
types?: ("
|
61
|
-
style?: ("
|
60
|
+
types?: ("camelCase" | "PascalCase" | "snake_case" | "UPPER_CASE") | {
|
61
|
+
style?: ("camelCase" | "PascalCase" | "snake_case" | "UPPER_CASE") | undefined;
|
62
62
|
suffix?: string | undefined;
|
63
63
|
prefix?: string | undefined;
|
64
64
|
forbiddenPrefixes?: string[] | undefined;
|
@@ -83,7 +83,7 @@ declare const rules: {
|
|
83
83
|
'no-unreachable-types': GraphQLESLintRule;
|
84
84
|
'no-unused-fields': GraphQLESLintRule;
|
85
85
|
'relay-arguments': GraphQLESLintRule<{
|
86
|
-
includeBoth
|
86
|
+
includeBoth: boolean;
|
87
87
|
}[], true>;
|
88
88
|
'relay-connection-types': GraphQLESLintRule;
|
89
89
|
'relay-edge-types': GraphQLESLintRule<{
|
@@ -102,7 +102,7 @@ declare const rules: {
|
|
102
102
|
'require-nullable-fields-with-oneof': GraphQLESLintRule;
|
103
103
|
'require-nullable-result-in-root': GraphQLESLintRule;
|
104
104
|
'require-selections': GraphQLESLintRule<{
|
105
|
-
fieldName
|
105
|
+
fieldName: string | string[];
|
106
106
|
}[], true>;
|
107
107
|
'require-type-pattern-with-oneof': GraphQLESLintRule;
|
108
108
|
'selection-set-depth': GraphQLESLintRule<{
|
package/esm/rules/index.js
CHANGED
@@ -1,39 +1,39 @@
|
|
1
1
|
import "../chunk-UIAXBAMD.js";
|
2
|
-
import { rule as alphabetize } from "./alphabetize.js";
|
3
|
-
import { rule as descriptionStyle } from "./description-style.js";
|
2
|
+
import { rule as alphabetize } from "./alphabetize/index.js";
|
3
|
+
import { rule as descriptionStyle } from "./description-style/index.js";
|
4
4
|
import { GRAPHQL_JS_VALIDATIONS } from "./graphql-js-validation.js";
|
5
|
-
import { rule as inputName } from "./input-name.js";
|
6
|
-
import { rule as loneExecutableDefinition } from "./lone-executable-definition.js";
|
7
|
-
import { rule as matchDocumentFilename } from "./match-document-filename.js";
|
8
|
-
import { rule as namingConvention } from "./naming-convention.js";
|
9
|
-
import { rule as noAnonymousOperations } from "./no-anonymous-operations.js";
|
10
|
-
import { rule as noDeprecated } from "./no-deprecated.js";
|
11
|
-
import { rule as noDuplicateFields } from "./no-duplicate-fields.js";
|
12
|
-
import { rule as noHashtagDescription } from "./no-hashtag-description.js";
|
13
|
-
import { rule as noOnePlaceFragments } from "./no-one-place-fragments.js";
|
14
|
-
import { rule as noRootType } from "./no-root-type.js";
|
15
|
-
import { rule as noScalarResultTypeOnMutation } from "./no-scalar-result-type-on-mutation.js";
|
16
|
-
import { rule as noTypenamePrefix } from "./no-typename-prefix.js";
|
17
|
-
import { rule as noUnreachableTypes } from "./no-unreachable-types.js";
|
18
|
-
import { rule as noUnusedFields } from "./no-unused-fields.js";
|
19
|
-
import { rule as relayArguments } from "./relay-arguments.js";
|
20
|
-
import { rule as relayConnectionTypes } from "./relay-connection-types.js";
|
21
|
-
import { rule as relayEdgeTypes } from "./relay-edge-types.js";
|
22
|
-
import { rule as relayPageInfo } from "./relay-page-info.js";
|
23
|
-
import { rule as requireDeprecationDate } from "./require-deprecation-date.js";
|
24
|
-
import { rule as requireDeprecationReason } from "./require-deprecation-reason.js";
|
25
|
-
import { rule as requireDescription } from "./require-description.js";
|
26
|
-
import { rule as requireFieldOfTypeQueryInMutationResult } from "./require-field-of-type-query-in-mutation-result.js";
|
27
|
-
import { rule as requireImportFragment } from "./require-import-fragment.js";
|
28
|
-
import { rule as requireNullableFieldsWithOneof } from "./require-nullable-fields-with-oneof.js";
|
29
|
-
import { rule as requireNullableResultInRoot } from "./require-nullable-result-in-root.js";
|
30
|
-
import { rule as requireSelections } from "./require-selections.js";
|
31
|
-
import { rule as requireTypePatternWithOneof } from "./require-type-pattern-with-oneof.js";
|
32
|
-
import { rule as selectionSetDepth } from "./selection-set-depth.js";
|
33
|
-
import { rule as strictIdInTypes } from "./strict-id-in-types.js";
|
34
|
-
import { rule as uniqueEnumValueNames } from "./unique-enum-value-names.js";
|
35
|
-
import { rule as uniqueFragmentName } from "./unique-fragment-name.js";
|
36
|
-
import { rule as uniqueOperationName } from "./unique-operation-name.js";
|
5
|
+
import { rule as inputName } from "./input-name/index.js";
|
6
|
+
import { rule as loneExecutableDefinition } from "./lone-executable-definition/index.js";
|
7
|
+
import { rule as matchDocumentFilename } from "./match-document-filename/index.js";
|
8
|
+
import { rule as namingConvention } from "./naming-convention/index.js";
|
9
|
+
import { rule as noAnonymousOperations } from "./no-anonymous-operations/index.js";
|
10
|
+
import { rule as noDeprecated } from "./no-deprecated/index.js";
|
11
|
+
import { rule as noDuplicateFields } from "./no-duplicate-fields/index.js";
|
12
|
+
import { rule as noHashtagDescription } from "./no-hashtag-description/index.js";
|
13
|
+
import { rule as noOnePlaceFragments } from "./no-one-place-fragments/index.js";
|
14
|
+
import { rule as noRootType } from "./no-root-type/index.js";
|
15
|
+
import { rule as noScalarResultTypeOnMutation } from "./no-scalar-result-type-on-mutation/index.js";
|
16
|
+
import { rule as noTypenamePrefix } from "./no-typename-prefix/index.js";
|
17
|
+
import { rule as noUnreachableTypes } from "./no-unreachable-types/index.js";
|
18
|
+
import { rule as noUnusedFields } from "./no-unused-fields/index.js";
|
19
|
+
import { rule as relayArguments } from "./relay-arguments/index.js";
|
20
|
+
import { rule as relayConnectionTypes } from "./relay-connection-types/index.js";
|
21
|
+
import { rule as relayEdgeTypes } from "./relay-edge-types/index.js";
|
22
|
+
import { rule as relayPageInfo } from "./relay-page-info/index.js";
|
23
|
+
import { rule as requireDeprecationDate } from "./require-deprecation-date/index.js";
|
24
|
+
import { rule as requireDeprecationReason } from "./require-deprecation-reason/index.js";
|
25
|
+
import { rule as requireDescription } from "./require-description/index.js";
|
26
|
+
import { rule as requireFieldOfTypeQueryInMutationResult } from "./require-field-of-type-query-in-mutation-result/index.js";
|
27
|
+
import { rule as requireImportFragment } from "./require-import-fragment/index.js";
|
28
|
+
import { rule as requireNullableFieldsWithOneof } from "./require-nullable-fields-with-oneof/index.js";
|
29
|
+
import { rule as requireNullableResultInRoot } from "./require-nullable-result-in-root/index.js";
|
30
|
+
import { rule as requireSelections } from "./require-selections/index.js";
|
31
|
+
import { rule as requireTypePatternWithOneof } from "./require-type-pattern-with-oneof/index.js";
|
32
|
+
import { rule as selectionSetDepth } from "./selection-set-depth/index.js";
|
33
|
+
import { rule as strictIdInTypes } from "./strict-id-in-types/index.js";
|
34
|
+
import { rule as uniqueEnumValueNames } from "./unique-enum-value-names/index.js";
|
35
|
+
import { rule as uniqueFragmentName } from "./unique-fragment-name/index.js";
|
36
|
+
import { rule as uniqueOperationName } from "./unique-operation-name/index.js";
|
37
37
|
const rules = {
|
38
38
|
...GRAPHQL_JS_VALIDATIONS,
|
39
39
|
alphabetize,
|
@@ -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: {
|
@@ -38,7 +38,9 @@ declare const schema: {
|
|
38
38
|
};
|
39
39
|
};
|
40
40
|
};
|
41
|
-
type RuleOptions = FromSchema<typeof schema
|
41
|
+
type RuleOptions = FromSchema<typeof schema, {
|
42
|
+
keepDefaultedPropertiesOptional: true;
|
43
|
+
}>;
|
42
44
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
43
45
|
|
44
46
|
export { type RuleOptions, rule };
|
package/esm/rules/{lone-executable-definition.d.mts → lone-executable-definition/index.d.ts}
RENAMED
@@ -1,11 +1,11 @@
|
|
1
1
|
import { OperationTypeNode } from 'graphql';
|
2
2
|
import { FromSchema } from 'json-schema-to-ts';
|
3
|
-
import { GraphQLESLintRule } from '
|
3
|
+
import { GraphQLESLintRule } from '../../types.js';
|
4
4
|
import 'eslint';
|
5
5
|
import 'estree';
|
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 "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { OperationTypeNode } from "graphql";
|
3
|
-
import { ARRAY_DEFAULT_OPTIONS, getLocation, pascalCase } from "
|
3
|
+
import { ARRAY_DEFAULT_OPTIONS, getLocation, pascalCase } from "../../utils.js";
|
4
4
|
const RULE_ID = "lone-executable-definition", definitionTypes = ["fragment", ...Object.values(OperationTypeNode)], schema = {
|
5
5
|
type: "array",
|
6
6
|
maxItems: 1,
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
3
|
-
import { CaseStyle as CaseStyle$1 } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.js';
|
3
|
+
import { CaseStyle as CaseStyle$1 } from '../../utils.js';
|
4
4
|
import 'eslint';
|
5
5
|
import 'estree';
|
6
6
|
import 'graphql';
|
7
7
|
import 'graphql-config';
|
8
|
-
import '
|
9
|
-
import '
|
8
|
+
import '../../estree-converter/types.js';
|
9
|
+
import '../../siblings.js';
|
10
10
|
import '@graphql-tools/utils';
|
11
11
|
|
12
12
|
type CaseStyle = CaseStyle$1 | 'matchDocumentStyle';
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { basename, extname } from "node:path";
|
3
3
|
import { Kind } from "graphql";
|
4
4
|
import {
|
5
5
|
convertCase,
|
6
6
|
REPORT_ON_FIRST_CHARACTER,
|
7
7
|
VIRTUAL_DOCUMENT_REGEX
|
8
|
-
} from "
|
8
|
+
} from "../../utils.js";
|
9
9
|
const MATCH_EXTENSION = "MATCH_EXTENSION", MATCH_STYLE = "MATCH_STYLE", CASE_STYLES = [
|
10
10
|
"camelCase",
|
11
11
|
"PascalCase",
|
@@ -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 {
|
@@ -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
|
type AllowedStyle = 'camelCase' | 'PascalCase' | 'snake_case' | 'UPPER_CASE';
|
@@ -102,7 +102,9 @@ declare const schema: {
|
|
102
102
|
readonly description: string;
|
103
103
|
};
|
104
104
|
};
|
105
|
-
type RuleOptions = FromSchema<typeof schema
|
105
|
+
type RuleOptions = FromSchema<typeof schema, {
|
106
|
+
keepDefaultedPropertiesOptional: true;
|
107
|
+
}>;
|
106
108
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
107
109
|
|
108
110
|
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
|
truthy,
|
8
8
|
TYPES_KINDS
|
9
|
-
} from "
|
9
|
+
} from "../../utils.js";
|
10
10
|
const KindToDisplayName = {
|
11
11
|
// types
|
12
12
|
[Kind.OBJECT_TYPE_DEFINITION]: "Type",
|
package/{cjs/rules/no-one-place-fragments.d.ts → esm/rules/no-anonymous-operations/index.d.ts}
RENAMED
@@ -1,11 +1,11 @@
|
|
1
|
-
import { GraphQLESLintRule } from '
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
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: GraphQLESLintRule;
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind } from "graphql";
|
3
|
-
import { getLocation } from "
|
3
|
+
import { getLocation } from "../../utils.js";
|
4
4
|
const RULE_ID = "no-anonymous-operations", rule = {
|
5
5
|
meta: {
|
6
6
|
type: "suggestion",
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { GraphQLESLintRule } from '
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
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: GraphQLESLintRule<[], true>;
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { Kind } from "graphql";
|
3
|
-
import { requireGraphQLSchemaFromContext } from "
|
3
|
+
import { requireGraphQLSchemaFromContext } from "../../utils.js";
|
4
4
|
const RULE_ID = "no-deprecated", rule = {
|
5
5
|
meta: {
|
6
6
|
type: "suggestion",
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { GraphQLESLintRule } from '
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
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: GraphQLESLintRule;
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { GraphQLESLintRule } from '
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
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 = "HASHTAG_COMMENT";
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { TokenKind } from "graphql";
|
3
|
-
import { getNodeName } from "
|
3
|
+
import { getNodeName } from "../../utils.js";
|
4
4
|
const RULE_ID = "HASHTAG_COMMENT", rule = {
|
5
5
|
meta: {
|
6
6
|
type: "suggestion",
|
package/{cjs/rules/no-anonymous-operations.d.ts → esm/rules/no-one-place-fragments/index.d.ts}
RENAMED
@@ -1,11 +1,11 @@
|
|
1
|
-
import { GraphQLESLintRule } from '
|
1
|
+
import { GraphQLESLintRule } from '../../types.js';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
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: GraphQLESLintRule;
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import "
|
1
|
+
import "../../chunk-UIAXBAMD.js";
|
2
2
|
import { relative } from "node:path";
|
3
3
|
import { visit } from "graphql";
|
4
|
-
import { CWD, requireSiblingsOperations } from "
|
4
|
+
import { CWD, requireSiblingsOperations } from "../../utils.js";
|
5
5
|
const RULE_ID = "no-one-place-fragments", rule = {
|
6
6
|
meta: {
|
7
7
|
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: {
|