@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/cjs/utils.js
CHANGED
@@ -1,49 +1,6 @@
|
|
1
|
-
"use strict";
|
2
|
-
var
|
3
|
-
var
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
-
var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
|
7
|
-
var __export = (target, all) => {
|
8
|
-
for (var name in all)
|
9
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
10
|
-
}, __copyProps = (to, from, except, desc) => {
|
11
|
-
if (from && typeof from == "object" || typeof from == "function")
|
12
|
-
for (let key of __getOwnPropNames(from))
|
13
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
14
|
-
return to;
|
15
|
-
};
|
16
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
17
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
18
|
-
// file that has been converted to a CommonJS file using a Babel-
|
19
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
20
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
21
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
|
22
|
-
mod
|
23
|
-
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
24
|
-
var utils_exports = {};
|
25
|
-
__export(utils_exports, {
|
26
|
-
ARRAY_DEFAULT_OPTIONS: () => ARRAY_DEFAULT_OPTIONS,
|
27
|
-
CWD: () => CWD,
|
28
|
-
REPORT_ON_FIRST_CHARACTER: () => REPORT_ON_FIRST_CHARACTER,
|
29
|
-
TYPES_KINDS: () => TYPES_KINDS,
|
30
|
-
VIRTUAL_DOCUMENT_REGEX: () => VIRTUAL_DOCUMENT_REGEX,
|
31
|
-
camelCase: () => camelCase,
|
32
|
-
convertCase: () => convertCase,
|
33
|
-
displayNodeName: () => displayNodeName,
|
34
|
-
englishJoinWords: () => englishJoinWords,
|
35
|
-
getLocation: () => getLocation,
|
36
|
-
getNodeName: () => getNodeName,
|
37
|
-
getTypeName: () => getTypeName,
|
38
|
-
logger: () => logger,
|
39
|
-
normalizePath: () => normalizePath,
|
40
|
-
pascalCase: () => pascalCase,
|
41
|
-
requireGraphQLSchemaFromContext: () => requireGraphQLSchemaFromContext,
|
42
|
-
requireSiblingsOperations: () => requireSiblingsOperations,
|
43
|
-
truthy: () => truthy
|
44
|
-
});
|
45
|
-
module.exports = __toCommonJS(utils_exports);
|
46
|
-
var import_graphql = require("graphql"), import_lodash = __toESM(require("lodash.lowercase"));
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }require('./chunk-UIAXBAMD.js');
|
2
|
+
var _graphql = require('graphql');
|
3
|
+
var _lodashlowercase = require('lodash.lowercase'); var _lodashlowercase2 = _interopRequireDefault(_lodashlowercase);
|
47
4
|
function requireSiblingsOperations(ruleId, context) {
|
48
5
|
const { siblingOperations } = context.sourceCode.parserServices;
|
49
6
|
if (!siblingOperations.available)
|
@@ -63,7 +20,7 @@ function requireGraphQLSchemaFromContext(ruleId, context) {
|
|
63
20
|
const chalk = {
|
64
21
|
red: (str) => `\x1B[31m${str}\x1B[39m`,
|
65
22
|
yellow: (str) => `\x1B[33m${str}\x1B[39m`
|
66
|
-
}, logger = {
|
23
|
+
}, logger = exports.logger = {
|
67
24
|
error: (...args) => (
|
68
25
|
// eslint-disable-next-line no-console
|
69
26
|
console.error(chalk.red("error"), "[graphql-eslint]", ...args)
|
@@ -72,28 +29,28 @@ const chalk = {
|
|
72
29
|
// eslint-disable-next-line no-console
|
73
30
|
console.warn(chalk.yellow("warning"), "[graphql-eslint]", ...args)
|
74
31
|
)
|
75
|
-
},
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
], pascalCase = (str) => (0,
|
32
|
+
}, slash = exports.slash = (path) => path.replaceAll("\\", "/"), VIRTUAL_DOCUMENT_REGEX = exports.VIRTUAL_DOCUMENT_REGEX = /[/\\]\d+_document.graphql$/, CWD = exports.CWD = process.cwd(), getTypeName = exports.getTypeName = (node) => "type" in node ? getTypeName(node.type) : "name" in node && node.name ? node.name.value : "", TYPES_KINDS = exports.TYPES_KINDS = [
|
33
|
+
_graphql.Kind.OBJECT_TYPE_DEFINITION,
|
34
|
+
_graphql.Kind.INTERFACE_TYPE_DEFINITION,
|
35
|
+
_graphql.Kind.ENUM_TYPE_DEFINITION,
|
36
|
+
_graphql.Kind.SCALAR_TYPE_DEFINITION,
|
37
|
+
_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION,
|
38
|
+
_graphql.Kind.UNION_TYPE_DEFINITION
|
39
|
+
], pascalCase = exports.pascalCase = (str) => _lodashlowercase2.default.call(void 0, str).split(" ").map((word) => word.charAt(0).toUpperCase() + word.slice(1)).join(""), camelCase = exports.camelCase = (str) => {
|
83
40
|
const result = pascalCase(str);
|
84
41
|
return result.charAt(0).toLowerCase() + result.slice(1);
|
85
|
-
}, convertCase = (style, str) => {
|
42
|
+
}, convertCase = exports.convertCase = (style, str) => {
|
86
43
|
switch (style) {
|
87
44
|
case "camelCase":
|
88
45
|
return camelCase(str);
|
89
46
|
case "PascalCase":
|
90
47
|
return pascalCase(str);
|
91
48
|
case "snake_case":
|
92
|
-
return (0,
|
49
|
+
return _lodashlowercase2.default.call(void 0, str).replace(/ /g, "_");
|
93
50
|
case "UPPER_CASE":
|
94
|
-
return (0,
|
51
|
+
return _lodashlowercase2.default.call(void 0, str).replace(/ /g, "_").toUpperCase();
|
95
52
|
case "kebab-case":
|
96
|
-
return (0,
|
53
|
+
return _lodashlowercase2.default.call(void 0, str).replace(/ /g, "-");
|
97
54
|
}
|
98
55
|
};
|
99
56
|
function getLocation(start, fieldName = "") {
|
@@ -109,80 +66,102 @@ function getLocation(start, fieldName = "") {
|
|
109
66
|
}
|
110
67
|
};
|
111
68
|
}
|
112
|
-
const REPORT_ON_FIRST_CHARACTER = { column: 0, line: 1 }, ARRAY_DEFAULT_OPTIONS = {
|
69
|
+
const REPORT_ON_FIRST_CHARACTER = { column: 0, line: 1 }, ARRAY_DEFAULT_OPTIONS = exports.ARRAY_DEFAULT_OPTIONS = {
|
113
70
|
type: "array",
|
114
71
|
uniqueItems: !0,
|
115
72
|
minItems: 1,
|
116
73
|
items: {
|
117
74
|
type: "string"
|
118
75
|
}
|
119
|
-
}, englishJoinWords = (words) => new Intl.ListFormat("en-US", { type: "disjunction" }).format(words);
|
76
|
+
}, englishJoinWords = exports.englishJoinWords = (words) => new Intl.ListFormat("en-US", { type: "disjunction" }).format(words);
|
120
77
|
function truthy(value) {
|
121
78
|
return !!value;
|
122
79
|
}
|
123
80
|
const DisplayNodeNameMap = {
|
124
|
-
[
|
125
|
-
[
|
126
|
-
[
|
127
|
-
[
|
128
|
-
[
|
129
|
-
[
|
130
|
-
[
|
131
|
-
[
|
132
|
-
[
|
133
|
-
[
|
134
|
-
[
|
135
|
-
[
|
136
|
-
[
|
137
|
-
[
|
138
|
-
[
|
139
|
-
[
|
140
|
-
[
|
141
|
-
[
|
142
|
-
[
|
143
|
-
[
|
81
|
+
[_graphql.Kind.ARGUMENT]: "argument",
|
82
|
+
[_graphql.Kind.BOOLEAN]: "boolean",
|
83
|
+
[_graphql.Kind.DIRECTIVE_DEFINITION]: "directive",
|
84
|
+
[_graphql.Kind.DIRECTIVE]: "directive",
|
85
|
+
[_graphql.Kind.DOCUMENT]: "document",
|
86
|
+
[_graphql.Kind.ENUM_TYPE_DEFINITION]: "enum",
|
87
|
+
[_graphql.Kind.ENUM_TYPE_EXTENSION]: "enum",
|
88
|
+
[_graphql.Kind.ENUM_VALUE_DEFINITION]: "enum value",
|
89
|
+
[_graphql.Kind.ENUM]: "enum",
|
90
|
+
[_graphql.Kind.FIELD_DEFINITION]: "field",
|
91
|
+
[_graphql.Kind.FIELD]: "field",
|
92
|
+
[_graphql.Kind.FLOAT]: "float",
|
93
|
+
[_graphql.Kind.FRAGMENT_DEFINITION]: "fragment",
|
94
|
+
[_graphql.Kind.FRAGMENT_SPREAD]: "fragment spread",
|
95
|
+
[_graphql.Kind.INLINE_FRAGMENT]: "inline fragment",
|
96
|
+
[_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION]: "input",
|
97
|
+
[_graphql.Kind.INPUT_OBJECT_TYPE_EXTENSION]: "input",
|
98
|
+
[_graphql.Kind.INPUT_VALUE_DEFINITION]: "input value",
|
99
|
+
[_graphql.Kind.INT]: "int",
|
100
|
+
[_graphql.Kind.INTERFACE_TYPE_DEFINITION]: "interface",
|
101
|
+
[_graphql.Kind.INTERFACE_TYPE_EXTENSION]: "interface",
|
102
|
+
[_graphql.Kind.LIST_TYPE]: "list type",
|
103
|
+
[_graphql.Kind.LIST]: "list",
|
104
|
+
[_graphql.Kind.NAME]: "name",
|
105
|
+
[_graphql.Kind.NAMED_TYPE]: "named type",
|
106
|
+
[_graphql.Kind.NON_NULL_TYPE]: "non-null type",
|
107
|
+
[_graphql.Kind.NULL]: "null",
|
108
|
+
[_graphql.Kind.OBJECT_FIELD]: "object field",
|
109
|
+
[_graphql.Kind.OBJECT_TYPE_DEFINITION]: "type",
|
110
|
+
[_graphql.Kind.OBJECT_TYPE_EXTENSION]: "type",
|
111
|
+
[_graphql.Kind.OBJECT]: "object",
|
112
|
+
[_graphql.Kind.OPERATION_DEFINITION]: "operation",
|
113
|
+
[_graphql.Kind.OPERATION_TYPE_DEFINITION]: "operation type",
|
114
|
+
[_graphql.Kind.SCALAR_TYPE_DEFINITION]: "scalar",
|
115
|
+
[_graphql.Kind.SCALAR_TYPE_EXTENSION]: "scalar",
|
116
|
+
[_graphql.Kind.SCHEMA_DEFINITION]: "schema",
|
117
|
+
[_graphql.Kind.SCHEMA_EXTENSION]: "schema",
|
118
|
+
[_graphql.Kind.SELECTION_SET]: "selection set",
|
119
|
+
[_graphql.Kind.STRING]: "string",
|
120
|
+
[_graphql.Kind.UNION_TYPE_DEFINITION]: "union",
|
121
|
+
[_graphql.Kind.UNION_TYPE_EXTENSION]: "union",
|
122
|
+
[_graphql.Kind.VARIABLE_DEFINITION]: "variable",
|
123
|
+
[_graphql.Kind.VARIABLE]: "variable"
|
144
124
|
};
|
145
125
|
function displayNodeName(node) {
|
146
|
-
return `${node.kind ===
|
126
|
+
return `${node.kind === _graphql.Kind.OPERATION_DEFINITION ? node.operation : DisplayNodeNameMap[node.kind]} "${"alias" in node && _optionalChain([node, 'access', _ => _.alias, 'optionalAccess', _2 => _2.value]) || "name" in node && _optionalChain([node, 'access', _3 => _3.name, 'optionalAccess', _4 => _4.value])}"`;
|
147
127
|
}
|
148
128
|
function getNodeName(node) {
|
149
129
|
switch (node.kind) {
|
150
|
-
case
|
151
|
-
case
|
152
|
-
case
|
153
|
-
case
|
154
|
-
case
|
155
|
-
case
|
156
|
-
case
|
157
|
-
case
|
130
|
+
case _graphql.Kind.OBJECT_TYPE_DEFINITION:
|
131
|
+
case _graphql.Kind.OBJECT_TYPE_EXTENSION:
|
132
|
+
case _graphql.Kind.INTERFACE_TYPE_DEFINITION:
|
133
|
+
case _graphql.Kind.ENUM_TYPE_DEFINITION:
|
134
|
+
case _graphql.Kind.SCALAR_TYPE_DEFINITION:
|
135
|
+
case _graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION:
|
136
|
+
case _graphql.Kind.UNION_TYPE_DEFINITION:
|
137
|
+
case _graphql.Kind.DIRECTIVE_DEFINITION:
|
158
138
|
return displayNodeName(node);
|
159
|
-
case
|
160
|
-
case
|
161
|
-
case
|
139
|
+
case _graphql.Kind.FIELD_DEFINITION:
|
140
|
+
case _graphql.Kind.INPUT_VALUE_DEFINITION:
|
141
|
+
case _graphql.Kind.ENUM_VALUE_DEFINITION:
|
162
142
|
return `${displayNodeName(node)} in ${displayNodeName(node.parent)}`;
|
163
|
-
case
|
143
|
+
case _graphql.Kind.OPERATION_DEFINITION:
|
164
144
|
return node.name ? displayNodeName(node) : node.operation;
|
165
145
|
}
|
166
146
|
return "";
|
167
147
|
}
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
});
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
exports.ARRAY_DEFAULT_OPTIONS = ARRAY_DEFAULT_OPTIONS; exports.CWD = CWD; exports.REPORT_ON_FIRST_CHARACTER = REPORT_ON_FIRST_CHARACTER; exports.TYPES_KINDS = TYPES_KINDS; exports.VIRTUAL_DOCUMENT_REGEX = VIRTUAL_DOCUMENT_REGEX; exports.camelCase = camelCase; exports.convertCase = convertCase; exports.displayNodeName = displayNodeName; exports.englishJoinWords = englishJoinWords; exports.getLocation = getLocation; exports.getNodeName = getNodeName; exports.getTypeName = getTypeName; exports.logger = logger; exports.pascalCase = pascalCase; exports.requireGraphQLSchemaFromContext = requireGraphQLSchemaFromContext; exports.requireSiblingsOperations = requireSiblingsOperations; exports.slash = slash; exports.truthy = truthy;
|
package/{cjs → esm}/cache.d.ts
RENAMED
@@ -0,0 +1,24 @@
|
|
1
|
+
declare const configs: {
|
2
|
+
'schema-recommended': any;
|
3
|
+
'schema-all': any;
|
4
|
+
'schema-relay': any;
|
5
|
+
'operations-recommended': any;
|
6
|
+
'operations-all': any;
|
7
|
+
'flat/schema-recommended': {
|
8
|
+
rules: any;
|
9
|
+
};
|
10
|
+
'flat/schema-all': {
|
11
|
+
rules: any;
|
12
|
+
};
|
13
|
+
'flat/schema-relay': {
|
14
|
+
rules: any;
|
15
|
+
};
|
16
|
+
'flat/operations-recommended': {
|
17
|
+
rules: any;
|
18
|
+
};
|
19
|
+
'flat/operations-all': {
|
20
|
+
rules: any;
|
21
|
+
};
|
22
|
+
};
|
23
|
+
|
24
|
+
export { configs };
|
package/esm/configs/index.js
CHANGED
@@ -9,7 +9,28 @@ const configs = {
|
|
9
9
|
"schema-all": schemaAllConfig,
|
10
10
|
"schema-relay": relayConfig,
|
11
11
|
"operations-recommended": operationsRecommendedConfig,
|
12
|
-
"operations-all": operationsAllConfig
|
12
|
+
"operations-all": operationsAllConfig,
|
13
|
+
"flat/schema-recommended": {
|
14
|
+
rules: schemaRecommendedConfig.rules
|
15
|
+
},
|
16
|
+
"flat/schema-all": {
|
17
|
+
rules: {
|
18
|
+
...schemaRecommendedConfig.rules,
|
19
|
+
...schemaAllConfig.rules
|
20
|
+
}
|
21
|
+
},
|
22
|
+
"flat/schema-relay": {
|
23
|
+
rules: relayConfig.rules
|
24
|
+
},
|
25
|
+
"flat/operations-recommended": {
|
26
|
+
rules: operationsRecommendedConfig.rules
|
27
|
+
},
|
28
|
+
"flat/operations-all": {
|
29
|
+
rules: {
|
30
|
+
...operationsRecommendedConfig.rules,
|
31
|
+
...operationsAllConfig.rules
|
32
|
+
}
|
33
|
+
}
|
13
34
|
};
|
14
35
|
export {
|
15
36
|
configs
|
@@ -13,7 +13,7 @@ var require_operations_all = __commonJS({
|
|
13
13
|
selections: ["OperationDefinition", "FragmentDefinition"],
|
14
14
|
variables: !0,
|
15
15
|
arguments: ["Field", "Directive"],
|
16
|
-
groups: ["
|
16
|
+
groups: ["...", "id", "*", "{"]
|
17
17
|
}
|
18
18
|
],
|
19
19
|
"@graphql-eslint/lone-executable-definition": "error",
|
package/esm/documents.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import "./chunk-UIAXBAMD.js";
|
2
|
-
import
|
2
|
+
import path from "node:path";
|
3
3
|
import debugFactory from "debug";
|
4
4
|
import fg from "fast-glob";
|
5
5
|
import { ModuleCache } from "./cache.js";
|
@@ -8,12 +8,17 @@ const debug = debugFactory("graphql-eslint:operations"), operationsCache = new M
|
|
8
8
|
return documents.map((source) => {
|
9
9
|
const location = source.location;
|
10
10
|
if ([".gql", ".graphql"].some((extension) => location.endsWith(extension)))
|
11
|
-
return
|
11
|
+
return {
|
12
|
+
...source,
|
13
|
+
// When using glob pattern e.g. `**/*.gql` location contains always forward slashes even on
|
14
|
+
// Windows
|
15
|
+
location: path.resolve(location)
|
16
|
+
};
|
12
17
|
filepathMap[location] ??= -1;
|
13
18
|
const index = filepathMap[location] += 1;
|
14
19
|
return {
|
15
20
|
...source,
|
16
|
-
location: resolve(location, `${index}_document.graphql`)
|
21
|
+
location: path.resolve(location, `${index}_document.graphql`)
|
17
22
|
};
|
18
23
|
});
|
19
24
|
}, getDocuments = (project) => {
|
@@ -4,5 +4,5 @@ export { convertLocation, convertToken, extractComments, extractTokens, getBaseT
|
|
4
4
|
import 'graphql';
|
5
5
|
import 'eslint';
|
6
6
|
import 'estree';
|
7
|
-
import 'graphql/jsutils/Maybe';
|
8
|
-
import 'graphql/jsutils/ObjMap';
|
7
|
+
import 'graphql/jsutils/Maybe.js';
|
8
|
+
import 'graphql/jsutils/ObjMap.js';
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import * as
|
2
|
-
import * as
|
1
|
+
import * as graphql_jsutils_Maybe_js from 'graphql/jsutils/Maybe.js';
|
2
|
+
import * as graphql_jsutils_ObjMap_js from 'graphql/jsutils/ObjMap.js';
|
3
3
|
import * as graphql from 'graphql';
|
4
4
|
import { GraphQLOutputType, GraphQLNamedType, TokenKind, Token, Location } from 'graphql';
|
5
5
|
import { AST } from 'eslint';
|
6
6
|
import { Comment, SourceLocation } from 'estree';
|
7
7
|
|
8
|
-
declare const valueFromNode: (valueNode: graphql.ValueNode, variables?:
|
8
|
+
declare const valueFromNode: (valueNode: graphql.ValueNode, variables?: graphql_jsutils_Maybe_js.Maybe<graphql_jsutils_ObjMap_js.ObjMap<unknown>>) => any;
|
9
9
|
declare function getBaseType(type: GraphQLOutputType): GraphQLNamedType;
|
10
10
|
declare function convertToken<T extends TokenKind | 'Block' | 'Line'>(token: Token, type: T): Omit<AST.Token, 'type'> & {
|
11
11
|
type: T;
|
package/esm/graphql-config.js
CHANGED
@@ -17,7 +17,7 @@ function loadGraphQLConfig({
|
|
17
17
|
graphQLConfig: config,
|
18
18
|
filePath
|
19
19
|
}) {
|
20
|
-
if (graphQLConfig)
|
20
|
+
if (process.env.NODE_ENV !== "test" && graphQLConfig)
|
21
21
|
return graphQLConfig;
|
22
22
|
debug("parserOptions.graphQLConfig: %o", config);
|
23
23
|
const onDiskConfig = !config && loadOnDiskGraphQLConfig(filePath);
|
package/esm/index.d.ts
ADDED
@@ -0,0 +1,184 @@
|
|
1
|
+
import { RuleOptions } from './rules/require-description/index.js';
|
2
|
+
import { CaseStyle } from './utils.js';
|
3
|
+
export { requireGraphQLSchemaFromContext, requireSiblingsOperations } from './utils.js';
|
4
|
+
import * as graphql from 'graphql';
|
5
|
+
import { GraphQLESLintRule } from './types.js';
|
6
|
+
export { CategoryType, ConfigName, GraphQLESLintParseResult, GraphQLESLintRuleContext, GraphQLESLintRuleListener, OmitRecursively, ParserOptions, ParserServices, Pointer, ReportDescriptor, RuleDocsInfo, Schema, ValueOf } from './types.js';
|
7
|
+
import * as eslint from 'eslint';
|
8
|
+
import { Block } from './processor.js';
|
9
|
+
export { configs } from './configs/index.js';
|
10
|
+
import { parseForESLint } from './parser.js';
|
11
|
+
export { parser } from './parser.js';
|
12
|
+
export { rules } from './rules/index.js';
|
13
|
+
export { GraphQLESTreeNode } from './estree-converter/types.js';
|
14
|
+
import 'estree';
|
15
|
+
import './siblings.js';
|
16
|
+
import '@graphql-tools/utils';
|
17
|
+
import 'graphql-config';
|
18
|
+
import 'json-schema-to-ts';
|
19
|
+
|
20
|
+
declare const processors: {
|
21
|
+
graphql: {
|
22
|
+
meta: {
|
23
|
+
name: string;
|
24
|
+
version: string | undefined;
|
25
|
+
};
|
26
|
+
supportsAutofix: true;
|
27
|
+
preprocess(code: string, filePath: string): (string | Block)[];
|
28
|
+
postprocess(messages: eslint.Linter.LintMessage[][], filePath: string): eslint.Linter.LintMessage[];
|
29
|
+
};
|
30
|
+
};
|
31
|
+
|
32
|
+
declare const _default: {
|
33
|
+
parser: {
|
34
|
+
parseForESLint: typeof parseForESLint;
|
35
|
+
meta: {
|
36
|
+
name: string;
|
37
|
+
version: string | undefined;
|
38
|
+
};
|
39
|
+
};
|
40
|
+
processor: {
|
41
|
+
meta: {
|
42
|
+
name: string;
|
43
|
+
version: string | undefined;
|
44
|
+
};
|
45
|
+
supportsAutofix: true;
|
46
|
+
preprocess(code: string, filePath: string): (string | Block)[];
|
47
|
+
postprocess(messages: eslint.Linter.LintMessage[][], filePath: string): eslint.Linter.LintMessage[];
|
48
|
+
};
|
49
|
+
rules: {
|
50
|
+
alphabetize: GraphQLESLintRule<{
|
51
|
+
values?: boolean | undefined;
|
52
|
+
definitions?: boolean | undefined;
|
53
|
+
selections?: ("OperationDefinition" | "FragmentDefinition")[] | undefined;
|
54
|
+
arguments?: ("Field" | "Directive" | "FieldDefinition" | "DirectiveDefinition")[] | undefined;
|
55
|
+
fields?: ("ObjectTypeDefinition" | "InterfaceTypeDefinition" | "InputObjectTypeDefinition")[] | undefined;
|
56
|
+
variables?: boolean | undefined;
|
57
|
+
groups?: string[] | undefined;
|
58
|
+
}[]>;
|
59
|
+
'description-style': GraphQLESLintRule<{
|
60
|
+
style: "block" | "inline";
|
61
|
+
}[]>;
|
62
|
+
'input-name': GraphQLESLintRule<{
|
63
|
+
checkInputType?: boolean | undefined;
|
64
|
+
caseSensitiveInputType?: boolean | undefined;
|
65
|
+
checkQueries?: boolean | undefined;
|
66
|
+
checkMutations?: boolean | undefined;
|
67
|
+
}[]>;
|
68
|
+
'lone-executable-definition': GraphQLESLintRule<{
|
69
|
+
ignore?: (graphql.OperationTypeNode | "fragment")[] | undefined;
|
70
|
+
}[]>;
|
71
|
+
'match-document-filename': GraphQLESLintRule<{
|
72
|
+
fragment?: (CaseStyle | "matchDocumentStyle") | {
|
73
|
+
style?: (CaseStyle | "matchDocumentStyle") | undefined;
|
74
|
+
suffix?: string | undefined;
|
75
|
+
prefix?: string | undefined;
|
76
|
+
} | undefined;
|
77
|
+
mutation?: (CaseStyle | "matchDocumentStyle") | {
|
78
|
+
style?: (CaseStyle | "matchDocumentStyle") | undefined;
|
79
|
+
suffix?: string | undefined;
|
80
|
+
prefix?: string | undefined;
|
81
|
+
} | undefined;
|
82
|
+
subscription?: (CaseStyle | "matchDocumentStyle") | {
|
83
|
+
style?: (CaseStyle | "matchDocumentStyle") | undefined;
|
84
|
+
suffix?: string | undefined;
|
85
|
+
prefix?: string | undefined;
|
86
|
+
} | undefined;
|
87
|
+
query?: (CaseStyle | "matchDocumentStyle") | {
|
88
|
+
style?: (CaseStyle | "matchDocumentStyle") | undefined;
|
89
|
+
suffix?: string | undefined;
|
90
|
+
prefix?: string | undefined;
|
91
|
+
} | undefined;
|
92
|
+
fileExtension?: ".gql" | ".graphql" | undefined;
|
93
|
+
}[]>;
|
94
|
+
'naming-convention': GraphQLESLintRule<{
|
95
|
+
[x: string]: unknown;
|
96
|
+
types?: ("camelCase" | "PascalCase" | "snake_case" | "UPPER_CASE") | {
|
97
|
+
style?: ("camelCase" | "PascalCase" | "snake_case" | "UPPER_CASE") | undefined;
|
98
|
+
suffix?: string | undefined;
|
99
|
+
prefix?: string | undefined;
|
100
|
+
forbiddenPrefixes?: string[] | undefined;
|
101
|
+
forbiddenSuffixes?: string[] | undefined;
|
102
|
+
requiredPrefixes?: string[] | undefined;
|
103
|
+
requiredSuffixes?: string[] | undefined;
|
104
|
+
ignorePattern?: string | undefined;
|
105
|
+
} | undefined;
|
106
|
+
allowLeadingUnderscore?: boolean | undefined;
|
107
|
+
allowTrailingUnderscore?: boolean | undefined;
|
108
|
+
}[]>;
|
109
|
+
'no-anonymous-operations': GraphQLESLintRule;
|
110
|
+
'no-deprecated': GraphQLESLintRule<[], true>;
|
111
|
+
'no-duplicate-fields': GraphQLESLintRule;
|
112
|
+
'no-hashtag-description': GraphQLESLintRule;
|
113
|
+
'no-one-place-fragments': GraphQLESLintRule;
|
114
|
+
'no-root-type': GraphQLESLintRule<{
|
115
|
+
disallow: ("mutation" | "subscription")[];
|
116
|
+
}[]>;
|
117
|
+
'no-scalar-result-type-on-mutation': GraphQLESLintRule;
|
118
|
+
'no-typename-prefix': GraphQLESLintRule;
|
119
|
+
'no-unreachable-types': GraphQLESLintRule;
|
120
|
+
'no-unused-fields': GraphQLESLintRule;
|
121
|
+
'relay-arguments': GraphQLESLintRule<{
|
122
|
+
includeBoth: boolean;
|
123
|
+
}[], true>;
|
124
|
+
'relay-connection-types': GraphQLESLintRule;
|
125
|
+
'relay-edge-types': GraphQLESLintRule<{
|
126
|
+
withEdgeSuffix?: boolean | undefined;
|
127
|
+
shouldImplementNode?: boolean | undefined;
|
128
|
+
listTypeCanWrapOnlyEdgeType?: boolean | undefined;
|
129
|
+
}[], true>;
|
130
|
+
'relay-page-info': GraphQLESLintRule;
|
131
|
+
'require-deprecation-date': GraphQLESLintRule<{
|
132
|
+
argumentName?: string | undefined;
|
133
|
+
}[]>;
|
134
|
+
'require-deprecation-reason': GraphQLESLintRule;
|
135
|
+
'require-description': GraphQLESLintRule<RuleOptions>;
|
136
|
+
'require-field-of-type-query-in-mutation-result': GraphQLESLintRule;
|
137
|
+
'require-import-fragment': GraphQLESLintRule;
|
138
|
+
'require-nullable-fields-with-oneof': GraphQLESLintRule;
|
139
|
+
'require-nullable-result-in-root': GraphQLESLintRule;
|
140
|
+
'require-selections': GraphQLESLintRule<{
|
141
|
+
fieldName: string | string[];
|
142
|
+
}[], true>;
|
143
|
+
'require-type-pattern-with-oneof': GraphQLESLintRule;
|
144
|
+
'selection-set-depth': GraphQLESLintRule<{
|
145
|
+
ignore?: string[] | undefined;
|
146
|
+
maxDepth: number;
|
147
|
+
}[]>;
|
148
|
+
'strict-id-in-types': GraphQLESLintRule<{
|
149
|
+
acceptedIdNames?: string[] | undefined;
|
150
|
+
acceptedIdTypes?: string[] | undefined;
|
151
|
+
exceptions?: {
|
152
|
+
types?: string[] | undefined;
|
153
|
+
suffixes?: string[] | undefined;
|
154
|
+
} | undefined;
|
155
|
+
}[]>;
|
156
|
+
'unique-enum-value-names': GraphQLESLintRule;
|
157
|
+
'unique-fragment-name': GraphQLESLintRule;
|
158
|
+
'unique-operation-name': GraphQLESLintRule;
|
159
|
+
};
|
160
|
+
configs: {
|
161
|
+
'schema-recommended': any;
|
162
|
+
'schema-all': any;
|
163
|
+
'schema-relay': any;
|
164
|
+
'operations-recommended': any;
|
165
|
+
'operations-all': any;
|
166
|
+
'flat/schema-recommended': {
|
167
|
+
rules: any;
|
168
|
+
};
|
169
|
+
'flat/schema-all': {
|
170
|
+
rules: any;
|
171
|
+
};
|
172
|
+
'flat/schema-relay': {
|
173
|
+
rules: any;
|
174
|
+
};
|
175
|
+
'flat/operations-recommended': {
|
176
|
+
rules: any;
|
177
|
+
};
|
178
|
+
'flat/operations-all': {
|
179
|
+
rules: any;
|
180
|
+
};
|
181
|
+
};
|
182
|
+
};
|
183
|
+
|
184
|
+
export { GraphQLESLintRule, _default as default, parseForESLint, processors };
|
package/esm/index.js
CHANGED
@@ -1,16 +1,22 @@
|
|
1
1
|
import "./chunk-UIAXBAMD.js";
|
2
|
+
import { configs } from "./configs/index.js";
|
3
|
+
import { parseForESLint, parser } from "./parser.js";
|
2
4
|
import { processor } from "./processor.js";
|
3
|
-
import { parseForESLint } from "./parser.js";
|
4
5
|
import { rules } from "./rules/index.js";
|
5
6
|
export * from "./types.js";
|
6
7
|
import { requireGraphQLSchemaFromContext, requireSiblingsOperations } from "./utils.js";
|
7
8
|
const processors = { graphql: processor };
|
8
|
-
|
9
|
-
|
9
|
+
var src_default = {
|
10
|
+
parser,
|
11
|
+
processor,
|
12
|
+
rules,
|
13
|
+
configs
|
14
|
+
};
|
10
15
|
export {
|
11
16
|
configs,
|
12
|
-
|
17
|
+
src_default as default,
|
13
18
|
parseForESLint,
|
19
|
+
parser,
|
14
20
|
processors,
|
15
21
|
requireGraphQLSchemaFromContext,
|
16
22
|
requireSiblingsOperations,
|
package/esm/meta.d.ts
ADDED
package/esm/meta.js
ADDED
package/{cjs → esm}/parser.d.ts
RENAMED
@@ -9,5 +9,12 @@ import './siblings.js';
|
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare function parseForESLint(code: string, options: ParserOptions): GraphQLESLintParseResult;
|
12
|
+
declare const parser: {
|
13
|
+
parseForESLint: typeof parseForESLint;
|
14
|
+
meta: {
|
15
|
+
name: string;
|
16
|
+
version: string | undefined;
|
17
|
+
};
|
18
|
+
};
|
12
19
|
|
13
|
-
export { parseForESLint };
|
20
|
+
export { parseForESLint, parser };
|