@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
@@ -1,106 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __defProp = Object.defineProperty;
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
6
|
-
var __export = (target, all) => {
|
7
|
-
for (var name in all)
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
11
|
-
for (let key of __getOwnPropNames(from))
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
13
|
-
return to;
|
14
|
-
};
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
16
|
-
var unique_fragment_name_exports = {};
|
17
|
-
__export(unique_fragment_name_exports, {
|
18
|
-
checkNode: () => checkNode,
|
19
|
-
rule: () => rule
|
20
|
-
});
|
21
|
-
module.exports = __toCommonJS(unique_fragment_name_exports);
|
22
|
-
var import_node_path = require("node:path"), import_graphql = require("graphql"), import_utils = require("../utils.js");
|
23
|
-
const RULE_ID = "unique-fragment-name", checkNode = (context, node, ruleId) => {
|
24
|
-
const documentName = node.name.value, siblings = (0, import_utils.requireSiblingsOperations)(ruleId, context), siblingDocuments = node.kind === import_graphql.Kind.FRAGMENT_DEFINITION ? siblings.getFragment(documentName) : siblings.getOperation(documentName), filepath = context.filename, conflictingDocuments = siblingDocuments.filter((f) => {
|
25
|
-
const isSameName = f.document.name?.value === documentName, isSamePath = (0, import_utils.normalizePath)(f.filePath) === (0, import_utils.normalizePath)(filepath);
|
26
|
-
return isSameName && !isSamePath;
|
27
|
-
});
|
28
|
-
conflictingDocuments.length > 0 && context.report({
|
29
|
-
messageId: ruleId,
|
30
|
-
data: {
|
31
|
-
documentName,
|
32
|
-
summary: conflictingDocuments.map((f) => ` ${(0, import_node_path.relative)(import_utils.CWD, f.filePath.replace(import_utils.VIRTUAL_DOCUMENT_REGEX, ""))}`).join(`
|
33
|
-
`)
|
34
|
-
},
|
35
|
-
// @ts-expect-error name will exist
|
36
|
-
node: node.name
|
37
|
-
});
|
38
|
-
}, rule = {
|
39
|
-
meta: {
|
40
|
-
type: "suggestion",
|
41
|
-
docs: {
|
42
|
-
category: "Operations",
|
43
|
-
description: "Enforce unique fragment names across your project.",
|
44
|
-
url: `https://the-guild.dev/graphql/eslint/rules/${RULE_ID}`,
|
45
|
-
requiresSiblings: !0,
|
46
|
-
recommended: !0,
|
47
|
-
examples: [
|
48
|
-
{
|
49
|
-
title: "Incorrect",
|
50
|
-
code: (
|
51
|
-
/* GraphQL */
|
52
|
-
`
|
53
|
-
# user.fragment.graphql
|
54
|
-
fragment UserFields on User {
|
55
|
-
id
|
56
|
-
name
|
57
|
-
fullName
|
58
|
-
}
|
59
|
-
|
60
|
-
# user-fields.graphql
|
61
|
-
fragment UserFields on User {
|
62
|
-
id
|
63
|
-
}
|
64
|
-
`
|
65
|
-
)
|
66
|
-
},
|
67
|
-
{
|
68
|
-
title: "Correct",
|
69
|
-
code: (
|
70
|
-
/* GraphQL */
|
71
|
-
`
|
72
|
-
# user.fragment.graphql
|
73
|
-
fragment AllUserFields on User {
|
74
|
-
id
|
75
|
-
name
|
76
|
-
fullName
|
77
|
-
}
|
78
|
-
|
79
|
-
# user-fields.graphql
|
80
|
-
fragment UserFields on User {
|
81
|
-
id
|
82
|
-
}
|
83
|
-
`
|
84
|
-
)
|
85
|
-
}
|
86
|
-
]
|
87
|
-
},
|
88
|
-
messages: {
|
89
|
-
[RULE_ID]: `Fragment named "{{ documentName }}" already defined in:
|
90
|
-
{{ summary }}`
|
91
|
-
},
|
92
|
-
schema: []
|
93
|
-
},
|
94
|
-
create(context) {
|
95
|
-
return {
|
96
|
-
FragmentDefinition(node) {
|
97
|
-
checkNode(context, node, RULE_ID);
|
98
|
-
}
|
99
|
-
};
|
100
|
-
}
|
101
|
-
};
|
102
|
-
// Annotate the CommonJS export names for ESM import in node:
|
103
|
-
0 && (module.exports = {
|
104
|
-
checkNode,
|
105
|
-
rule
|
106
|
-
});
|
@@ -1,13 +0,0 @@
|
|
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/configs/index.d.mts
DELETED
@@ -1,174 +0,0 @@
|
|
1
|
-
declare const configs: {
|
2
|
-
'schema-recommended': {
|
3
|
-
parser: string;
|
4
|
-
plugins: string[];
|
5
|
-
rules: {
|
6
|
-
'@graphql-eslint/description-style': string;
|
7
|
-
'@graphql-eslint/known-argument-names': string;
|
8
|
-
'@graphql-eslint/known-directives': string;
|
9
|
-
'@graphql-eslint/known-type-names': string;
|
10
|
-
'@graphql-eslint/lone-schema-definition': string;
|
11
|
-
'@graphql-eslint/naming-convention': (string | {
|
12
|
-
types: string;
|
13
|
-
FieldDefinition: string;
|
14
|
-
InputValueDefinition: string;
|
15
|
-
Argument: string;
|
16
|
-
DirectiveDefinition: string;
|
17
|
-
EnumValueDefinition: string;
|
18
|
-
'FieldDefinition[parent.name.value=Query]': {
|
19
|
-
forbiddenPrefixes: string[];
|
20
|
-
forbiddenSuffixes: string[];
|
21
|
-
};
|
22
|
-
'FieldDefinition[parent.name.value=Mutation]': {
|
23
|
-
forbiddenPrefixes: string[];
|
24
|
-
forbiddenSuffixes: string[];
|
25
|
-
};
|
26
|
-
'FieldDefinition[parent.name.value=Subscription]': {
|
27
|
-
forbiddenPrefixes: string[];
|
28
|
-
forbiddenSuffixes: string[];
|
29
|
-
};
|
30
|
-
'EnumTypeDefinition,EnumTypeExtension': {
|
31
|
-
forbiddenPrefixes: string[];
|
32
|
-
forbiddenSuffixes: string[];
|
33
|
-
};
|
34
|
-
'InterfaceTypeDefinition,InterfaceTypeExtension': {
|
35
|
-
forbiddenPrefixes: string[];
|
36
|
-
forbiddenSuffixes: string[];
|
37
|
-
};
|
38
|
-
'UnionTypeDefinition,UnionTypeExtension': {
|
39
|
-
forbiddenPrefixes: string[];
|
40
|
-
forbiddenSuffixes: string[];
|
41
|
-
};
|
42
|
-
'ObjectTypeDefinition,ObjectTypeExtension': {
|
43
|
-
forbiddenPrefixes: string[];
|
44
|
-
forbiddenSuffixes: string[];
|
45
|
-
};
|
46
|
-
})[];
|
47
|
-
'@graphql-eslint/no-hashtag-description': string;
|
48
|
-
'@graphql-eslint/no-typename-prefix': string;
|
49
|
-
'@graphql-eslint/no-unreachable-types': string;
|
50
|
-
'@graphql-eslint/possible-type-extension': string;
|
51
|
-
'@graphql-eslint/provided-required-arguments': string;
|
52
|
-
'@graphql-eslint/require-deprecation-reason': string;
|
53
|
-
'@graphql-eslint/require-description': (string | {
|
54
|
-
types: boolean;
|
55
|
-
DirectiveDefinition: boolean;
|
56
|
-
rootField: boolean;
|
57
|
-
})[];
|
58
|
-
'@graphql-eslint/strict-id-in-types': string;
|
59
|
-
'@graphql-eslint/unique-directive-names': string;
|
60
|
-
'@graphql-eslint/unique-directive-names-per-location': string;
|
61
|
-
'@graphql-eslint/unique-enum-value-names': string;
|
62
|
-
'@graphql-eslint/unique-field-definition-names': string;
|
63
|
-
'@graphql-eslint/unique-operation-types': string;
|
64
|
-
'@graphql-eslint/unique-type-names': string;
|
65
|
-
};
|
66
|
-
};
|
67
|
-
'schema-all': {
|
68
|
-
extends: string;
|
69
|
-
rules: {
|
70
|
-
'@graphql-eslint/alphabetize': (string | {
|
71
|
-
definitions: boolean;
|
72
|
-
fields: string[];
|
73
|
-
values: boolean;
|
74
|
-
arguments: string[];
|
75
|
-
groups: string[];
|
76
|
-
})[];
|
77
|
-
'@graphql-eslint/input-name': string;
|
78
|
-
'@graphql-eslint/no-root-type': (string | {
|
79
|
-
disallow: string[];
|
80
|
-
})[];
|
81
|
-
'@graphql-eslint/no-scalar-result-type-on-mutation': string;
|
82
|
-
'@graphql-eslint/require-deprecation-date': string;
|
83
|
-
'@graphql-eslint/require-field-of-type-query-in-mutation-result': string;
|
84
|
-
'@graphql-eslint/require-nullable-fields-with-oneof': string;
|
85
|
-
'@graphql-eslint/require-nullable-result-in-root': string;
|
86
|
-
'@graphql-eslint/require-type-pattern-with-oneof': string;
|
87
|
-
};
|
88
|
-
};
|
89
|
-
'schema-relay': {
|
90
|
-
parser: string;
|
91
|
-
plugins: string[];
|
92
|
-
rules: {
|
93
|
-
'@graphql-eslint/relay-arguments': string;
|
94
|
-
'@graphql-eslint/relay-connection-types': string;
|
95
|
-
'@graphql-eslint/relay-edge-types': string;
|
96
|
-
'@graphql-eslint/relay-page-info': string;
|
97
|
-
};
|
98
|
-
};
|
99
|
-
'operations-recommended': {
|
100
|
-
parser: string;
|
101
|
-
plugins: string[];
|
102
|
-
rules: {
|
103
|
-
'@graphql-eslint/executable-definitions': string;
|
104
|
-
'@graphql-eslint/fields-on-correct-type': string;
|
105
|
-
'@graphql-eslint/fragments-on-composite-type': string;
|
106
|
-
'@graphql-eslint/known-argument-names': string;
|
107
|
-
'@graphql-eslint/known-directives': string;
|
108
|
-
'@graphql-eslint/known-fragment-names': string;
|
109
|
-
'@graphql-eslint/known-type-names': string;
|
110
|
-
'@graphql-eslint/lone-anonymous-operation': string;
|
111
|
-
'@graphql-eslint/naming-convention': (string | {
|
112
|
-
VariableDefinition: string;
|
113
|
-
OperationDefinition: {
|
114
|
-
style: string;
|
115
|
-
forbiddenPrefixes: string[];
|
116
|
-
forbiddenSuffixes: string[];
|
117
|
-
};
|
118
|
-
FragmentDefinition: {
|
119
|
-
style: string;
|
120
|
-
forbiddenPrefixes: string[];
|
121
|
-
forbiddenSuffixes: string[];
|
122
|
-
};
|
123
|
-
})[];
|
124
|
-
'@graphql-eslint/no-anonymous-operations': string;
|
125
|
-
'@graphql-eslint/no-deprecated': string;
|
126
|
-
'@graphql-eslint/no-duplicate-fields': string;
|
127
|
-
'@graphql-eslint/no-fragment-cycles': string;
|
128
|
-
'@graphql-eslint/no-undefined-variables': string;
|
129
|
-
'@graphql-eslint/no-unused-fragments': string;
|
130
|
-
'@graphql-eslint/no-unused-variables': string;
|
131
|
-
'@graphql-eslint/one-field-subscriptions': string;
|
132
|
-
'@graphql-eslint/overlapping-fields-can-be-merged': string;
|
133
|
-
'@graphql-eslint/possible-fragment-spread': string;
|
134
|
-
'@graphql-eslint/provided-required-arguments': string;
|
135
|
-
'@graphql-eslint/require-selections': string;
|
136
|
-
'@graphql-eslint/scalar-leafs': string;
|
137
|
-
'@graphql-eslint/selection-set-depth': (string | {
|
138
|
-
maxDepth: number;
|
139
|
-
})[];
|
140
|
-
'@graphql-eslint/unique-argument-names': string;
|
141
|
-
'@graphql-eslint/unique-directive-names-per-location': string;
|
142
|
-
'@graphql-eslint/unique-fragment-name': string;
|
143
|
-
'@graphql-eslint/unique-input-field-names': string;
|
144
|
-
'@graphql-eslint/unique-operation-name': string;
|
145
|
-
'@graphql-eslint/unique-variable-names': string;
|
146
|
-
'@graphql-eslint/value-literals-of-correct-type': string;
|
147
|
-
'@graphql-eslint/variables-are-input-types': string;
|
148
|
-
'@graphql-eslint/variables-in-allowed-position': string;
|
149
|
-
};
|
150
|
-
};
|
151
|
-
'operations-all': {
|
152
|
-
extends: string;
|
153
|
-
rules: {
|
154
|
-
'@graphql-eslint/alphabetize': (string | {
|
155
|
-
definitions: boolean;
|
156
|
-
selections: string[];
|
157
|
-
variables: boolean;
|
158
|
-
arguments: string[];
|
159
|
-
groups: string[];
|
160
|
-
})[];
|
161
|
-
'@graphql-eslint/lone-executable-definition': string;
|
162
|
-
'@graphql-eslint/match-document-filename': (string | {
|
163
|
-
query: string;
|
164
|
-
mutation: string;
|
165
|
-
subscription: string;
|
166
|
-
fragment: string;
|
167
|
-
})[];
|
168
|
-
'@graphql-eslint/no-one-place-fragments': string;
|
169
|
-
'@graphql-eslint/require-import-fragment': string;
|
170
|
-
};
|
171
|
-
};
|
172
|
-
};
|
173
|
-
|
174
|
-
export { configs };
|
@@ -1,8 +0,0 @@
|
|
1
|
-
export { convertToESTree } from './converter.mjs';
|
2
|
-
export { GraphQLESTreeNode, TypeInformation } from './types.mjs';
|
3
|
-
export { convertLocation, convertToken, extractComments, extractTokens, getBaseType, valueFromNode } from './utils.mjs';
|
4
|
-
import 'graphql';
|
5
|
-
import 'eslint';
|
6
|
-
import 'estree';
|
7
|
-
import 'graphql/jsutils/Maybe';
|
8
|
-
import 'graphql/jsutils/ObjMap';
|
package/esm/flat-configs.d.mts
DELETED
@@ -1,307 +0,0 @@
|
|
1
|
-
import { parseForESLint } from './parser.mjs';
|
2
|
-
import './types.mjs';
|
3
|
-
import 'eslint';
|
4
|
-
import 'estree';
|
5
|
-
import 'graphql';
|
6
|
-
import 'graphql-config';
|
7
|
-
import 'json-schema-to-ts';
|
8
|
-
import './estree-converter/types.mjs';
|
9
|
-
import './siblings.mjs';
|
10
|
-
import '@graphql-tools/utils';
|
11
|
-
|
12
|
-
declare const flatConfigs: {
|
13
|
-
'operations-all': {
|
14
|
-
languageOptions: {
|
15
|
-
parser: {
|
16
|
-
parseForESLint: typeof parseForESLint;
|
17
|
-
};
|
18
|
-
};
|
19
|
-
rules: {
|
20
|
-
'@graphql-eslint/alphabetize': (string | {
|
21
|
-
definitions: boolean;
|
22
|
-
selections: string[];
|
23
|
-
variables: boolean;
|
24
|
-
arguments: string[];
|
25
|
-
groups: string[];
|
26
|
-
})[];
|
27
|
-
'@graphql-eslint/lone-executable-definition': string;
|
28
|
-
'@graphql-eslint/match-document-filename': (string | {
|
29
|
-
query: string;
|
30
|
-
mutation: string;
|
31
|
-
subscription: string;
|
32
|
-
fragment: string;
|
33
|
-
})[];
|
34
|
-
'@graphql-eslint/no-one-place-fragments': string;
|
35
|
-
'@graphql-eslint/require-import-fragment': string;
|
36
|
-
'@graphql-eslint/executable-definitions': string;
|
37
|
-
'@graphql-eslint/fields-on-correct-type': string;
|
38
|
-
'@graphql-eslint/fragments-on-composite-type': string;
|
39
|
-
'@graphql-eslint/known-argument-names': string;
|
40
|
-
'@graphql-eslint/known-directives': string;
|
41
|
-
'@graphql-eslint/known-fragment-names': string;
|
42
|
-
'@graphql-eslint/known-type-names': string;
|
43
|
-
'@graphql-eslint/lone-anonymous-operation': string;
|
44
|
-
'@graphql-eslint/naming-convention': (string | {
|
45
|
-
VariableDefinition: string;
|
46
|
-
OperationDefinition: {
|
47
|
-
style: string;
|
48
|
-
forbiddenPrefixes: string[];
|
49
|
-
forbiddenSuffixes: string[];
|
50
|
-
};
|
51
|
-
FragmentDefinition: {
|
52
|
-
style: string;
|
53
|
-
forbiddenPrefixes: string[];
|
54
|
-
forbiddenSuffixes: string[];
|
55
|
-
};
|
56
|
-
})[];
|
57
|
-
'@graphql-eslint/no-anonymous-operations': string;
|
58
|
-
'@graphql-eslint/no-deprecated': string;
|
59
|
-
'@graphql-eslint/no-duplicate-fields': string;
|
60
|
-
'@graphql-eslint/no-fragment-cycles': string;
|
61
|
-
'@graphql-eslint/no-undefined-variables': string;
|
62
|
-
'@graphql-eslint/no-unused-fragments': string;
|
63
|
-
'@graphql-eslint/no-unused-variables': string;
|
64
|
-
'@graphql-eslint/one-field-subscriptions': string;
|
65
|
-
'@graphql-eslint/overlapping-fields-can-be-merged': string;
|
66
|
-
'@graphql-eslint/possible-fragment-spread': string;
|
67
|
-
'@graphql-eslint/provided-required-arguments': string;
|
68
|
-
'@graphql-eslint/require-selections': string;
|
69
|
-
'@graphql-eslint/scalar-leafs': string;
|
70
|
-
'@graphql-eslint/selection-set-depth': (string | {
|
71
|
-
maxDepth: number;
|
72
|
-
})[];
|
73
|
-
'@graphql-eslint/unique-argument-names': string;
|
74
|
-
'@graphql-eslint/unique-directive-names-per-location': string;
|
75
|
-
'@graphql-eslint/unique-fragment-name': string;
|
76
|
-
'@graphql-eslint/unique-input-field-names': string;
|
77
|
-
'@graphql-eslint/unique-operation-name': string;
|
78
|
-
'@graphql-eslint/unique-variable-names': string;
|
79
|
-
'@graphql-eslint/value-literals-of-correct-type': string;
|
80
|
-
'@graphql-eslint/variables-are-input-types': string;
|
81
|
-
'@graphql-eslint/variables-in-allowed-position': string;
|
82
|
-
};
|
83
|
-
};
|
84
|
-
'operations-recommended': {
|
85
|
-
languageOptions: {
|
86
|
-
parser: {
|
87
|
-
parseForESLint: typeof parseForESLint;
|
88
|
-
};
|
89
|
-
};
|
90
|
-
rules: {
|
91
|
-
'@graphql-eslint/executable-definitions': string;
|
92
|
-
'@graphql-eslint/fields-on-correct-type': string;
|
93
|
-
'@graphql-eslint/fragments-on-composite-type': string;
|
94
|
-
'@graphql-eslint/known-argument-names': string;
|
95
|
-
'@graphql-eslint/known-directives': string;
|
96
|
-
'@graphql-eslint/known-fragment-names': string;
|
97
|
-
'@graphql-eslint/known-type-names': string;
|
98
|
-
'@graphql-eslint/lone-anonymous-operation': string;
|
99
|
-
'@graphql-eslint/naming-convention': (string | {
|
100
|
-
VariableDefinition: string;
|
101
|
-
OperationDefinition: {
|
102
|
-
style: string;
|
103
|
-
forbiddenPrefixes: string[];
|
104
|
-
forbiddenSuffixes: string[];
|
105
|
-
};
|
106
|
-
FragmentDefinition: {
|
107
|
-
style: string;
|
108
|
-
forbiddenPrefixes: string[];
|
109
|
-
forbiddenSuffixes: string[];
|
110
|
-
};
|
111
|
-
})[];
|
112
|
-
'@graphql-eslint/no-anonymous-operations': string;
|
113
|
-
'@graphql-eslint/no-deprecated': string;
|
114
|
-
'@graphql-eslint/no-duplicate-fields': string;
|
115
|
-
'@graphql-eslint/no-fragment-cycles': string;
|
116
|
-
'@graphql-eslint/no-undefined-variables': string;
|
117
|
-
'@graphql-eslint/no-unused-fragments': string;
|
118
|
-
'@graphql-eslint/no-unused-variables': string;
|
119
|
-
'@graphql-eslint/one-field-subscriptions': string;
|
120
|
-
'@graphql-eslint/overlapping-fields-can-be-merged': string;
|
121
|
-
'@graphql-eslint/possible-fragment-spread': string;
|
122
|
-
'@graphql-eslint/provided-required-arguments': string;
|
123
|
-
'@graphql-eslint/require-selections': string;
|
124
|
-
'@graphql-eslint/scalar-leafs': string;
|
125
|
-
'@graphql-eslint/selection-set-depth': (string | {
|
126
|
-
maxDepth: number;
|
127
|
-
})[];
|
128
|
-
'@graphql-eslint/unique-argument-names': string;
|
129
|
-
'@graphql-eslint/unique-directive-names-per-location': string;
|
130
|
-
'@graphql-eslint/unique-fragment-name': string;
|
131
|
-
'@graphql-eslint/unique-input-field-names': string;
|
132
|
-
'@graphql-eslint/unique-operation-name': string;
|
133
|
-
'@graphql-eslint/unique-variable-names': string;
|
134
|
-
'@graphql-eslint/value-literals-of-correct-type': string;
|
135
|
-
'@graphql-eslint/variables-are-input-types': string;
|
136
|
-
'@graphql-eslint/variables-in-allowed-position': string;
|
137
|
-
};
|
138
|
-
};
|
139
|
-
'schema-relay': {
|
140
|
-
languageOptions: {
|
141
|
-
parser: {
|
142
|
-
parseForESLint: typeof parseForESLint;
|
143
|
-
};
|
144
|
-
};
|
145
|
-
rules: {
|
146
|
-
'@graphql-eslint/relay-arguments': string;
|
147
|
-
'@graphql-eslint/relay-connection-types': string;
|
148
|
-
'@graphql-eslint/relay-edge-types': string;
|
149
|
-
'@graphql-eslint/relay-page-info': string;
|
150
|
-
};
|
151
|
-
};
|
152
|
-
'schema-all': {
|
153
|
-
languageOptions: {
|
154
|
-
parser: {
|
155
|
-
parseForESLint: typeof parseForESLint;
|
156
|
-
};
|
157
|
-
};
|
158
|
-
rules: {
|
159
|
-
'@graphql-eslint/alphabetize': (string | {
|
160
|
-
definitions: boolean;
|
161
|
-
fields: string[];
|
162
|
-
values: boolean;
|
163
|
-
arguments: string[];
|
164
|
-
groups: string[];
|
165
|
-
})[];
|
166
|
-
'@graphql-eslint/input-name': string;
|
167
|
-
'@graphql-eslint/no-root-type': (string | {
|
168
|
-
disallow: string[];
|
169
|
-
})[];
|
170
|
-
'@graphql-eslint/no-scalar-result-type-on-mutation': string;
|
171
|
-
'@graphql-eslint/require-deprecation-date': string;
|
172
|
-
'@graphql-eslint/require-field-of-type-query-in-mutation-result': string;
|
173
|
-
'@graphql-eslint/require-nullable-fields-with-oneof': string;
|
174
|
-
'@graphql-eslint/require-nullable-result-in-root': string;
|
175
|
-
'@graphql-eslint/require-type-pattern-with-oneof': string;
|
176
|
-
'@graphql-eslint/description-style': string;
|
177
|
-
'@graphql-eslint/known-argument-names': string;
|
178
|
-
'@graphql-eslint/known-directives': string;
|
179
|
-
'@graphql-eslint/known-type-names': string;
|
180
|
-
'@graphql-eslint/lone-schema-definition': string;
|
181
|
-
'@graphql-eslint/naming-convention': (string | {
|
182
|
-
types: string;
|
183
|
-
FieldDefinition: string;
|
184
|
-
InputValueDefinition: string;
|
185
|
-
Argument: string;
|
186
|
-
DirectiveDefinition: string;
|
187
|
-
EnumValueDefinition: string;
|
188
|
-
'FieldDefinition[parent.name.value=Query]': {
|
189
|
-
forbiddenPrefixes: string[];
|
190
|
-
forbiddenSuffixes: string[];
|
191
|
-
};
|
192
|
-
'FieldDefinition[parent.name.value=Mutation]': {
|
193
|
-
forbiddenPrefixes: string[];
|
194
|
-
forbiddenSuffixes: string[];
|
195
|
-
};
|
196
|
-
'FieldDefinition[parent.name.value=Subscription]': {
|
197
|
-
forbiddenPrefixes: string[];
|
198
|
-
forbiddenSuffixes: string[];
|
199
|
-
};
|
200
|
-
'EnumTypeDefinition,EnumTypeExtension': {
|
201
|
-
forbiddenPrefixes: string[];
|
202
|
-
forbiddenSuffixes: string[];
|
203
|
-
};
|
204
|
-
'InterfaceTypeDefinition,InterfaceTypeExtension': {
|
205
|
-
forbiddenPrefixes: string[];
|
206
|
-
forbiddenSuffixes: string[];
|
207
|
-
};
|
208
|
-
'UnionTypeDefinition,UnionTypeExtension': {
|
209
|
-
forbiddenPrefixes: string[];
|
210
|
-
forbiddenSuffixes: string[];
|
211
|
-
};
|
212
|
-
'ObjectTypeDefinition,ObjectTypeExtension': {
|
213
|
-
forbiddenPrefixes: string[];
|
214
|
-
forbiddenSuffixes: string[];
|
215
|
-
};
|
216
|
-
})[];
|
217
|
-
'@graphql-eslint/no-hashtag-description': string;
|
218
|
-
'@graphql-eslint/no-typename-prefix': string;
|
219
|
-
'@graphql-eslint/no-unreachable-types': string;
|
220
|
-
'@graphql-eslint/possible-type-extension': string;
|
221
|
-
'@graphql-eslint/provided-required-arguments': string;
|
222
|
-
'@graphql-eslint/require-deprecation-reason': string;
|
223
|
-
'@graphql-eslint/require-description': (string | {
|
224
|
-
types: boolean;
|
225
|
-
DirectiveDefinition: boolean;
|
226
|
-
rootField: boolean;
|
227
|
-
})[];
|
228
|
-
'@graphql-eslint/strict-id-in-types': string;
|
229
|
-
'@graphql-eslint/unique-directive-names': string;
|
230
|
-
'@graphql-eslint/unique-directive-names-per-location': string;
|
231
|
-
'@graphql-eslint/unique-enum-value-names': string;
|
232
|
-
'@graphql-eslint/unique-field-definition-names': string;
|
233
|
-
'@graphql-eslint/unique-operation-types': string;
|
234
|
-
'@graphql-eslint/unique-type-names': string;
|
235
|
-
};
|
236
|
-
};
|
237
|
-
'schema-recommended': {
|
238
|
-
languageOptions: {
|
239
|
-
parser: {
|
240
|
-
parseForESLint: typeof parseForESLint;
|
241
|
-
};
|
242
|
-
};
|
243
|
-
rules: {
|
244
|
-
'@graphql-eslint/description-style': string;
|
245
|
-
'@graphql-eslint/known-argument-names': string;
|
246
|
-
'@graphql-eslint/known-directives': string;
|
247
|
-
'@graphql-eslint/known-type-names': string;
|
248
|
-
'@graphql-eslint/lone-schema-definition': string;
|
249
|
-
'@graphql-eslint/naming-convention': (string | {
|
250
|
-
types: string;
|
251
|
-
FieldDefinition: string;
|
252
|
-
InputValueDefinition: string;
|
253
|
-
Argument: string;
|
254
|
-
DirectiveDefinition: string;
|
255
|
-
EnumValueDefinition: string;
|
256
|
-
'FieldDefinition[parent.name.value=Query]': {
|
257
|
-
forbiddenPrefixes: string[];
|
258
|
-
forbiddenSuffixes: string[];
|
259
|
-
};
|
260
|
-
'FieldDefinition[parent.name.value=Mutation]': {
|
261
|
-
forbiddenPrefixes: string[];
|
262
|
-
forbiddenSuffixes: string[];
|
263
|
-
};
|
264
|
-
'FieldDefinition[parent.name.value=Subscription]': {
|
265
|
-
forbiddenPrefixes: string[];
|
266
|
-
forbiddenSuffixes: string[];
|
267
|
-
};
|
268
|
-
'EnumTypeDefinition,EnumTypeExtension': {
|
269
|
-
forbiddenPrefixes: string[];
|
270
|
-
forbiddenSuffixes: string[];
|
271
|
-
};
|
272
|
-
'InterfaceTypeDefinition,InterfaceTypeExtension': {
|
273
|
-
forbiddenPrefixes: string[];
|
274
|
-
forbiddenSuffixes: string[];
|
275
|
-
};
|
276
|
-
'UnionTypeDefinition,UnionTypeExtension': {
|
277
|
-
forbiddenPrefixes: string[];
|
278
|
-
forbiddenSuffixes: string[];
|
279
|
-
};
|
280
|
-
'ObjectTypeDefinition,ObjectTypeExtension': {
|
281
|
-
forbiddenPrefixes: string[];
|
282
|
-
forbiddenSuffixes: string[];
|
283
|
-
};
|
284
|
-
})[];
|
285
|
-
'@graphql-eslint/no-hashtag-description': string;
|
286
|
-
'@graphql-eslint/no-typename-prefix': string;
|
287
|
-
'@graphql-eslint/no-unreachable-types': string;
|
288
|
-
'@graphql-eslint/possible-type-extension': string;
|
289
|
-
'@graphql-eslint/provided-required-arguments': string;
|
290
|
-
'@graphql-eslint/require-deprecation-reason': string;
|
291
|
-
'@graphql-eslint/require-description': (string | {
|
292
|
-
types: boolean;
|
293
|
-
DirectiveDefinition: boolean;
|
294
|
-
rootField: boolean;
|
295
|
-
})[];
|
296
|
-
'@graphql-eslint/strict-id-in-types': string;
|
297
|
-
'@graphql-eslint/unique-directive-names': string;
|
298
|
-
'@graphql-eslint/unique-directive-names-per-location': string;
|
299
|
-
'@graphql-eslint/unique-enum-value-names': string;
|
300
|
-
'@graphql-eslint/unique-field-definition-names': string;
|
301
|
-
'@graphql-eslint/unique-operation-types': string;
|
302
|
-
'@graphql-eslint/unique-type-names': string;
|
303
|
-
};
|
304
|
-
};
|
305
|
-
};
|
306
|
-
|
307
|
-
export { flatConfigs };
|
package/esm/flat-configs.js
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
import "./chunk-UIAXBAMD.js";
|
2
|
-
import { configs } from "./configs/index.js";
|
3
|
-
import { parseForESLint } from "./parser.js";
|
4
|
-
const languageOptions = {
|
5
|
-
parser: { parseForESLint }
|
6
|
-
}, flatConfigs = {
|
7
|
-
"operations-all": {
|
8
|
-
languageOptions,
|
9
|
-
rules: {
|
10
|
-
...configs["operations-recommended"].rules,
|
11
|
-
...configs["operations-all"].rules
|
12
|
-
}
|
13
|
-
},
|
14
|
-
"operations-recommended": {
|
15
|
-
languageOptions,
|
16
|
-
rules: configs["operations-recommended"].rules
|
17
|
-
},
|
18
|
-
"schema-relay": {
|
19
|
-
languageOptions,
|
20
|
-
rules: configs["schema-relay"].rules
|
21
|
-
},
|
22
|
-
"schema-all": {
|
23
|
-
languageOptions,
|
24
|
-
rules: {
|
25
|
-
...configs["schema-recommended"].rules,
|
26
|
-
...configs["schema-all"].rules
|
27
|
-
}
|
28
|
-
},
|
29
|
-
"schema-recommended": {
|
30
|
-
languageOptions,
|
31
|
-
rules: configs["schema-recommended"].rules
|
32
|
-
}
|
33
|
-
};
|
34
|
-
export {
|
35
|
-
flatConfigs
|
36
|
-
};
|
package/esm/index.d.mts
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
import * as eslint from 'eslint';
|
2
|
-
import { Block } from './processor.mjs';
|
3
|
-
export { parseForESLint } from './parser.mjs';
|
4
|
-
export { rules } from './rules/index.mjs';
|
5
|
-
export { CategoryType, ConfigName, GraphQLESLintParseResult, GraphQLESLintRule, GraphQLESLintRuleContext, GraphQLESLintRuleListener, OmitRecursively, ParserOptions, ParserServices, Pointer, ReportDescriptor, RuleDocsInfo, Schema, ValueOf } from './types.mjs';
|
6
|
-
export { requireGraphQLSchemaFromContext, requireSiblingsOperations } from './utils.mjs';
|
7
|
-
export { configs } from './configs/index.mjs';
|
8
|
-
export { flatConfigs } from './flat-configs.mjs';
|
9
|
-
export { GraphQLESTreeNode } from './estree-converter/types.mjs';
|
10
|
-
import './rules/require-description.mjs';
|
11
|
-
import 'graphql';
|
12
|
-
import 'estree';
|
13
|
-
import 'graphql-config';
|
14
|
-
import 'json-schema-to-ts';
|
15
|
-
import './siblings.mjs';
|
16
|
-
import '@graphql-tools/utils';
|
17
|
-
|
18
|
-
declare const processors: {
|
19
|
-
graphql: {
|
20
|
-
supportsAutofix: true;
|
21
|
-
preprocess(code: string, filePath: string): (string | Block)[];
|
22
|
-
postprocess(messages: eslint.Linter.LintMessage[][], filePath: string): eslint.Linter.LintMessage[];
|
23
|
-
};
|
24
|
-
};
|
25
|
-
|
26
|
-
export { processors };
|
package/esm/package.json
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"type": "module"}
|