@graphql-eslint/eslint-plugin 4.0.0-alpha.6 → 4.0.0-alpha.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. package/cjs/cache.js +8 -36
  2. package/cjs/chunk-UIAXBAMD.js +8 -0
  3. package/cjs/configs/index.d.cts +15 -5
  4. package/cjs/configs/index.js +31 -45
  5. package/cjs/configs/operations-all.js +33 -26
  6. package/cjs/configs/operations-recommended.js +59 -52
  7. package/cjs/configs/schema-all.js +29 -22
  8. package/cjs/configs/schema-recommended.js +73 -66
  9. package/cjs/configs/schema-relay.js +17 -10
  10. package/cjs/documents.js +12 -37
  11. package/cjs/estree-converter/converter.js +16 -30
  12. package/cjs/estree-converter/index.js +3 -23
  13. package/cjs/estree-converter/types.js +1 -14
  14. package/cjs/estree-converter/utils.js +22 -40
  15. package/cjs/graphql-config.js +15 -41
  16. package/cjs/index.d.cts +164 -9
  17. package/cjs/index.js +24 -41
  18. package/cjs/meta.js +5 -25
  19. package/cjs/parser.js +29 -49
  20. package/cjs/processor.js +22 -35
  21. package/{esm/rules/alphabetize.d.ts → cjs/rules/alphabetize/index.d.cts} +4 -4
  22. package/cjs/rules/{alphabetize.js → alphabetize/index.js} +69 -77
  23. package/{esm/rules/description-style.d.ts → cjs/rules/description-style/index.d.cts} +3 -3
  24. package/cjs/rules/{description-style.js → description-style/index.js} +7 -27
  25. package/cjs/rules/graphql-js-validation.js +93 -70
  26. package/cjs/rules/index.d.cts +5 -5
  27. package/cjs/rules/index.js +74 -60
  28. package/{esm/rules/input-name.d.ts → cjs/rules/input-name/index.d.cts} +3 -3
  29. package/cjs/rules/{input-name.js → input-name/index.js} +10 -28
  30. package/{esm/rules/lone-executable-definition.d.ts → cjs/rules/lone-executable-definition/index.d.cts} +3 -3
  31. package/cjs/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +13 -32
  32. package/cjs/rules/{match-document-filename.d.cts → match-document-filename/index.d.cts} +4 -4
  33. package/cjs/rules/{match-document-filename.js → match-document-filename/index.js} +20 -34
  34. package/{esm/rules/naming-convention.d.ts → cjs/rules/naming-convention/index.d.cts} +3 -3
  35. package/cjs/rules/{naming-convention.js → naming-convention/index.js} +41 -54
  36. package/cjs/rules/no-anonymous-operations/index.d.cts +13 -0
  37. package/cjs/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +9 -28
  38. package/cjs/rules/{no-deprecated.d.cts → no-deprecated/index.d.cts} +3 -3
  39. package/cjs/rules/{no-deprecated.js → no-deprecated/index.js} +11 -30
  40. package/cjs/rules/no-duplicate-fields/index.d.cts +13 -0
  41. package/cjs/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +8 -28
  42. package/cjs/rules/{no-hashtag-description.d.cts → no-hashtag-description/index.d.cts} +3 -3
  43. package/cjs/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +11 -31
  44. package/cjs/rules/no-one-place-fragments/index.d.cts +13 -0
  45. package/cjs/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +11 -29
  46. package/cjs/rules/{no-root-type.d.cts → no-root-type/index.d.cts} +3 -3
  47. package/cjs/rules/{no-root-type.js → no-root-type/index.js} +9 -29
  48. package/cjs/rules/no-scalar-result-type-on-mutation/index.d.cts +13 -0
  49. package/cjs/rules/no-scalar-result-type-on-mutation/index.js +69 -0
  50. package/cjs/rules/no-typename-prefix/index.d.cts +13 -0
  51. package/cjs/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +5 -25
  52. package/cjs/rules/no-unreachable-types/index.d.cts +13 -0
  53. package/cjs/rules/no-unreachable-types/index.js +155 -0
  54. package/cjs/rules/no-unused-fields/index.d.cts +13 -0
  55. package/cjs/rules/{no-unused-fields.js → no-unused-fields/index.js} +12 -30
  56. package/{esm/rules/relay-arguments.d.ts → cjs/rules/relay-arguments/index.d.cts} +3 -3
  57. package/cjs/rules/{relay-arguments.js → relay-arguments/index.js} +11 -30
  58. package/{esm/rules/relay-connection-types.d.ts → cjs/rules/relay-connection-types/index.d.cts} +3 -3
  59. package/cjs/rules/{relay-connection-types.js → relay-connection-types/index.js} +19 -40
  60. package/{esm/rules/relay-edge-types.d.ts → cjs/rules/relay-edge-types/index.d.cts} +3 -3
  61. package/cjs/rules/{relay-edge-types.js → relay-edge-types/index.js} +30 -43
  62. package/cjs/rules/relay-page-info/index.d.cts +13 -0
  63. package/cjs/rules/{relay-page-info.js → relay-page-info/index.js} +12 -30
  64. package/{esm/rules/require-deprecation-date.d.ts → cjs/rules/require-deprecation-date/index.d.cts} +3 -3
  65. package/cjs/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +13 -32
  66. package/cjs/rules/require-deprecation-reason/index.d.cts +13 -0
  67. package/cjs/rules/require-deprecation-reason/index.js +66 -0
  68. package/cjs/rules/{require-description.d.cts → require-description/index.d.cts} +3 -3
  69. package/cjs/rules/{require-description.js → require-description/index.js} +30 -44
  70. package/cjs/rules/require-field-of-type-query-in-mutation-result/index.d.cts +13 -0
  71. package/cjs/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +10 -29
  72. package/cjs/rules/require-import-fragment/index.d.cts +13 -0
  73. package/cjs/rules/{require-import-fragment.js → require-import-fragment/index.js} +11 -38
  74. package/cjs/rules/require-nullable-fields-with-oneof/index.d.cts +13 -0
  75. package/cjs/rules/require-nullable-fields-with-oneof/index.js +62 -0
  76. package/cjs/rules/require-nullable-result-in-root/index.d.cts +13 -0
  77. package/cjs/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +12 -31
  78. package/cjs/rules/{require-selections.d.cts → require-selections/index.d.cts} +3 -3
  79. package/cjs/rules/{require-selections.js → require-selections/index.js} +38 -43
  80. package/cjs/rules/require-type-pattern-with-oneof/index.d.cts +13 -0
  81. package/cjs/rules/require-type-pattern-with-oneof/index.js +63 -0
  82. package/{esm/rules/selection-set-depth.d.ts → cjs/rules/selection-set-depth/index.d.cts} +3 -3
  83. package/cjs/rules/{selection-set-depth.js → selection-set-depth/index.js} +15 -41
  84. package/cjs/rules/{strict-id-in-types.d.cts → strict-id-in-types/index.d.cts} +3 -3
  85. package/cjs/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +26 -39
  86. package/cjs/rules/unique-enum-value-names/index.d.cts +13 -0
  87. package/cjs/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +10 -29
  88. package/{esm/rules/unique-fragment-name.d.ts → cjs/rules/unique-fragment-name/index.d.cts} +3 -3
  89. package/cjs/rules/unique-fragment-name/index.js +87 -0
  90. package/cjs/rules/unique-operation-name/index.d.cts +13 -0
  91. package/cjs/rules/{unique-operation-name.js → unique-operation-name/index.js} +7 -27
  92. package/cjs/schema.js +11 -36
  93. package/cjs/siblings.js +17 -33
  94. package/cjs/types.js +1 -14
  95. package/cjs/utils.d.cts +2 -2
  96. package/cjs/utils.js +94 -115
  97. package/esm/configs/index.d.ts +15 -5
  98. package/esm/configs/index.js +17 -7
  99. package/esm/configs/operations-all.js +1 -1
  100. package/esm/index.d.ts +164 -9
  101. package/esm/index.js +9 -2
  102. package/esm/meta.js +1 -1
  103. package/{cjs/rules/alphabetize.d.cts → esm/rules/alphabetize/index.d.ts} +4 -4
  104. package/esm/rules/{alphabetize.js → alphabetize/index.js} +26 -10
  105. package/{cjs/rules/description-style.d.cts → esm/rules/description-style/index.d.ts} +3 -3
  106. package/esm/rules/{description-style.js → description-style/index.js} +2 -2
  107. package/esm/rules/index.d.ts +5 -5
  108. package/esm/rules/index.js +34 -34
  109. package/{cjs/rules/input-name.d.cts → esm/rules/input-name/index.d.ts} +3 -3
  110. package/esm/rules/{input-name.js → input-name/index.js} +1 -1
  111. package/{cjs/rules/lone-executable-definition.d.cts → esm/rules/lone-executable-definition/index.d.ts} +3 -3
  112. package/esm/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +2 -2
  113. package/esm/rules/{match-document-filename.d.ts → match-document-filename/index.d.ts} +4 -4
  114. package/esm/rules/{match-document-filename.js → match-document-filename/index.js} +2 -2
  115. package/{cjs/rules/naming-convention.d.cts → esm/rules/naming-convention/index.d.ts} +3 -3
  116. package/esm/rules/{naming-convention.js → naming-convention/index.js} +2 -2
  117. package/{cjs/rules/no-anonymous-operations.d.cts → esm/rules/no-anonymous-operations/index.d.ts} +3 -3
  118. package/esm/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +2 -2
  119. package/esm/rules/{no-deprecated.d.ts → no-deprecated/index.d.ts} +3 -3
  120. package/esm/rules/{no-deprecated.js → no-deprecated/index.js} +2 -2
  121. package/{cjs/rules/no-one-place-fragments.d.cts → esm/rules/no-duplicate-fields/index.d.ts} +3 -3
  122. package/esm/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +1 -1
  123. package/esm/rules/{no-hashtag-description.d.ts → no-hashtag-description/index.d.ts} +3 -3
  124. package/esm/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +2 -2
  125. package/{cjs/rules/no-duplicate-fields.d.cts → esm/rules/no-one-place-fragments/index.d.ts} +3 -3
  126. package/esm/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +2 -2
  127. package/esm/rules/{no-root-type.d.ts → no-root-type/index.d.ts} +3 -3
  128. package/esm/rules/{no-root-type.js → no-root-type/index.js} +2 -2
  129. package/{cjs/rules/no-scalar-result-type-on-mutation.d.cts → esm/rules/no-scalar-result-type-on-mutation/index.d.ts} +3 -3
  130. package/esm/rules/{no-scalar-result-type-on-mutation.js → no-scalar-result-type-on-mutation/index.js} +2 -2
  131. package/esm/rules/no-typename-prefix/index.d.ts +13 -0
  132. package/esm/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +1 -1
  133. package/esm/rules/no-unreachable-types/index.d.ts +13 -0
  134. package/esm/rules/{no-unreachable-types.js → no-unreachable-types/index.js} +3 -3
  135. package/esm/rules/no-unused-fields/index.d.ts +13 -0
  136. package/esm/rules/{no-unused-fields.js → no-unused-fields/index.js} +3 -3
  137. package/{cjs/rules/relay-arguments.d.cts → esm/rules/relay-arguments/index.d.ts} +3 -3
  138. package/esm/rules/{relay-arguments.js → relay-arguments/index.js} +2 -2
  139. package/{cjs/rules/relay-connection-types.d.cts → esm/rules/relay-connection-types/index.d.ts} +3 -3
  140. package/esm/rules/{relay-connection-types.js → relay-connection-types/index.js} +1 -1
  141. package/{cjs/rules/relay-edge-types.d.cts → esm/rules/relay-edge-types/index.d.ts} +3 -3
  142. package/esm/rules/{relay-edge-types.js → relay-edge-types/index.js} +2 -2
  143. package/esm/rules/relay-page-info/index.d.ts +13 -0
  144. package/esm/rules/{relay-page-info.js → relay-page-info/index.js} +3 -3
  145. package/{cjs/rules/require-deprecation-date.d.cts → esm/rules/require-deprecation-date/index.d.ts} +3 -3
  146. package/esm/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +3 -3
  147. package/esm/rules/require-deprecation-reason/index.d.ts +13 -0
  148. package/esm/rules/{require-deprecation-reason.js → require-deprecation-reason/index.js} +3 -3
  149. package/esm/rules/{require-description.d.ts → require-description/index.d.ts} +3 -3
  150. package/esm/rules/{require-description.js → require-description/index.js} +2 -2
  151. package/esm/rules/require-field-of-type-query-in-mutation-result/index.d.ts +13 -0
  152. package/esm/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +2 -2
  153. package/esm/rules/require-import-fragment/index.d.ts +13 -0
  154. package/esm/rules/{require-import-fragment.js → require-import-fragment/index.js} +2 -2
  155. package/esm/rules/require-nullable-fields-with-oneof/index.d.ts +13 -0
  156. package/esm/rules/{require-nullable-fields-with-oneof.js → require-nullable-fields-with-oneof/index.js} +2 -2
  157. package/esm/rules/require-nullable-result-in-root/index.d.ts +13 -0
  158. package/esm/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +2 -2
  159. package/esm/rules/{require-selections.d.ts → require-selections/index.d.ts} +3 -3
  160. package/esm/rules/{require-selections.js → require-selections/index.js} +3 -4
  161. package/esm/rules/require-type-pattern-with-oneof/index.d.ts +13 -0
  162. package/esm/rules/{require-type-pattern-with-oneof.js → require-type-pattern-with-oneof/index.js} +2 -2
  163. package/{cjs/rules/selection-set-depth.d.cts → esm/rules/selection-set-depth/index.d.ts} +3 -3
  164. package/esm/rules/{selection-set-depth.js → selection-set-depth/index.js} +2 -2
  165. package/esm/rules/{strict-id-in-types.d.ts → strict-id-in-types/index.d.ts} +3 -3
  166. package/esm/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +2 -2
  167. package/esm/rules/unique-enum-value-names/index.d.ts +13 -0
  168. package/esm/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +2 -2
  169. package/{cjs/rules/unique-fragment-name.d.cts → esm/rules/unique-fragment-name/index.d.ts} +3 -3
  170. package/esm/rules/{unique-fragment-name.js → unique-fragment-name/index.js} +3 -3
  171. package/esm/rules/unique-operation-name/index.d.ts +13 -0
  172. package/esm/rules/{unique-operation-name.js → unique-operation-name/index.js} +2 -2
  173. package/esm/utils.d.ts +2 -2
  174. package/esm/utils.js +39 -16
  175. package/index.browser.js +115 -67
  176. package/package.json +2 -2
  177. package/cjs/rules/no-scalar-result-type-on-mutation.js +0 -88
  178. package/cjs/rules/no-typename-prefix.d.cts +0 -13
  179. package/cjs/rules/no-unreachable-types.d.cts +0 -13
  180. package/cjs/rules/no-unreachable-types.js +0 -175
  181. package/cjs/rules/no-unused-fields.d.cts +0 -13
  182. package/cjs/rules/relay-page-info.d.cts +0 -13
  183. package/cjs/rules/require-deprecation-reason.d.cts +0 -13
  184. package/cjs/rules/require-deprecation-reason.js +0 -85
  185. package/cjs/rules/require-field-of-type-query-in-mutation-result.d.cts +0 -13
  186. package/cjs/rules/require-import-fragment.d.cts +0 -13
  187. package/cjs/rules/require-nullable-fields-with-oneof.d.cts +0 -13
  188. package/cjs/rules/require-nullable-fields-with-oneof.js +0 -81
  189. package/cjs/rules/require-nullable-result-in-root.d.cts +0 -13
  190. package/cjs/rules/require-type-pattern-with-oneof.d.cts +0 -13
  191. package/cjs/rules/require-type-pattern-with-oneof.js +0 -83
  192. package/cjs/rules/unique-enum-value-names.d.cts +0 -13
  193. package/cjs/rules/unique-fragment-name.js +0 -106
  194. package/cjs/rules/unique-operation-name.d.cts +0 -13
  195. package/esm/rules/no-anonymous-operations.d.ts +0 -13
  196. package/esm/rules/no-duplicate-fields.d.ts +0 -13
  197. package/esm/rules/no-one-place-fragments.d.ts +0 -13
  198. package/esm/rules/no-scalar-result-type-on-mutation.d.ts +0 -13
  199. package/esm/rules/no-typename-prefix.d.ts +0 -13
  200. package/esm/rules/no-unreachable-types.d.ts +0 -13
  201. package/esm/rules/no-unused-fields.d.ts +0 -13
  202. package/esm/rules/relay-page-info.d.ts +0 -13
  203. package/esm/rules/require-deprecation-reason.d.ts +0 -13
  204. package/esm/rules/require-field-of-type-query-in-mutation-result.d.ts +0 -13
  205. package/esm/rules/require-import-fragment.d.ts +0 -13
  206. package/esm/rules/require-nullable-fields-with-oneof.d.ts +0 -13
  207. package/esm/rules/require-nullable-result-in-root.d.ts +0 -13
  208. package/esm/rules/require-type-pattern-with-oneof.d.ts +0 -13
  209. package/esm/rules/unique-enum-value-names.d.ts +0 -13
  210. package/esm/rules/unique-operation-name.d.ts +0 -13
package/cjs/parser.js CHANGED
@@ -1,35 +1,16 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
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 parser_exports = {};
25
- __export(parser_exports, {
26
- parseForESLint: () => parseForESLint,
27
- parser: () => parser
28
- });
29
- module.exports = __toCommonJS(parser_exports);
30
- var import_debug = __toESM(require("debug"), 1), import_graphql = require("graphql"), import_utils = require("@graphql-tools/utils"), import_documents = require("./documents.js"), import_estree_converter = require("./estree-converter/index.js"), import_graphql_config2 = require("./graphql-config.js"), import_meta = require("./meta.js"), import_schema = require("./schema.js"), import_siblings = require("./siblings.js"), import_utils2 = require("./utils.js");
31
- const debug = (0, import_debug.default)("graphql-eslint:parser");
32
- debug("cwd %o", import_utils2.CWD);
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 _debug = require('debug'); var _debug2 = _interopRequireDefault(_debug);
3
+ var _graphql = require('graphql');
4
+ var _utils = require('@graphql-tools/utils');
5
+ var _documentsjs = require('./documents.js');
6
+ var _indexjs = require('./estree-converter/index.js');
7
+ var _graphqlconfigjs = require('./graphql-config.js');
8
+ var _metajs = require('./meta.js');
9
+ var _schemajs = require('./schema.js');
10
+ var _siblingsjs = require('./siblings.js');
11
+ var _utilsjs = require('./utils.js');
12
+ const debug = _debug2.default.call(void 0, "graphql-eslint:parser");
13
+ debug("cwd %o", _utilsjs.CWD);
33
14
  const LEGACY_PARSER_OPTIONS_KEYS = [
34
15
  "schema",
35
16
  "documents",
@@ -49,26 +30,26 @@ function parseForESLint(code, options) {
49
30
  `\`parserOptions.${key}\` was removed in graphql-eslint@4. Use physical graphql-config for setting schema and documents or \`parserOptions.graphQLConfig\` for programmatic usage.`
50
31
  );
51
32
  try {
52
- const { filePath } = options, { document } = (0, import_utils.parseGraphQLSDL)(filePath, code, { noLocation: !1 });
33
+ const { filePath } = options, { document } = _utils.parseGraphQLSDL.call(void 0, filePath, code, { noLocation: !1 });
53
34
  let project, schema, documents;
54
35
  {
55
- const gqlConfig = (0, import_graphql_config2.loadGraphQLConfig)(options), realFilepath = filePath.replace(import_utils2.VIRTUAL_DOCUMENT_REGEX, "");
56
- project = gqlConfig.getProjectForFile(realFilepath), documents = (0, import_documents.getDocuments)(project);
36
+ const gqlConfig = _graphqlconfigjs.loadGraphQLConfig.call(void 0, options), realFilepath = filePath.replace(_utilsjs.VIRTUAL_DOCUMENT_REGEX, "");
37
+ project = gqlConfig.getProjectForFile(realFilepath), documents = _documentsjs.getDocuments.call(void 0, project);
57
38
  }
58
39
  try {
59
- schema = (0, import_schema.getSchema)(project);
40
+ schema = _schemajs.getSchema.call(void 0, project);
60
41
  } catch (error) {
61
42
  throw error instanceof Error && (error.message = `Error while loading schema: ${error.message}`), error;
62
43
  }
63
- const rootTree = (0, import_estree_converter.convertToESTree)(document, schema);
44
+ const rootTree = _indexjs.convertToESTree.call(void 0, document, schema);
64
45
  return {
65
46
  services: {
66
47
  schema,
67
- siblingOperations: (0, import_siblings.getSiblings)(documents)
48
+ siblingOperations: _siblingsjs.getSiblings.call(void 0, documents)
68
49
  },
69
50
  ast: {
70
- comments: (0, import_estree_converter.extractComments)(document.loc),
71
- tokens: (0, import_estree_converter.extractTokens)(filePath, code),
51
+ comments: _indexjs.extractComments.call(void 0, document.loc),
52
+ tokens: _indexjs.extractTokens.call(void 0, filePath, code),
72
53
  loc: rootTree.loc,
73
54
  range: rootTree.range,
74
55
  type: "Program",
@@ -77,10 +58,10 @@ function parseForESLint(code, options) {
77
58
  }
78
59
  };
79
60
  } catch (error) {
80
- if (error instanceof Error && (error.message = `[graphql-eslint] ${error.message}`), error instanceof import_graphql.GraphQLError) {
81
- const location = error.locations?.[0];
61
+ if (error instanceof Error && (error.message = `[graphql-eslint] ${error.message}`), error instanceof _graphql.GraphQLError) {
62
+ const location = _optionalChain([error, 'access', _ => _.locations, 'optionalAccess', _2 => _2[0]]);
82
63
  throw {
83
- index: error.positions?.[0],
64
+ index: _optionalChain([error, 'access', _3 => _3.positions, 'optionalAccess', _4 => _4[0]]),
84
65
  ...location && {
85
66
  lineNumber: location.line,
86
67
  column: location.column - 1
@@ -95,11 +76,10 @@ const parser = {
95
76
  parseForESLint,
96
77
  meta: {
97
78
  name: "@graphql-eslint/parser",
98
- version: import_meta.version
79
+ version: _metajs.version
99
80
  }
100
81
  };
101
- // Annotate the CommonJS export names for ESM import in node:
102
- 0 && (module.exports = {
103
- parseForESLint,
104
- parser
105
- });
82
+
83
+
84
+
85
+ exports.parseForESLint = parseForESLint; exports.parser = parser;
package/cjs/processor.js CHANGED
@@ -1,36 +1,24 @@
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 processor_exports = {};
17
- __export(processor_exports, {
18
- processor: () => processor
19
- });
20
- module.exports = __toCommonJS(processor_exports);
21
- var import_node_path = require("node:path"), import_graphql_tag_pluck = require("@graphql-tools/graphql-tag-pluck"), import_utils = require("@graphql-tools/utils"), import_graphql_config2 = require("./graphql-config.js"), import_meta = require("./meta.js"), import_utils2 = require("./utils.js");
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); 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 _nodepath = require('node:path');
3
+
4
+
5
+ var _graphqltagpluck = require('@graphql-tools/graphql-tag-pluck');
6
+ var _utils = require('@graphql-tools/utils');
7
+ var _graphqlconfigjs = require('./graphql-config.js');
8
+ var _metajs = require('./meta.js');
9
+ var _utilsjs = require('./utils.js');
22
10
  const blocksMap = /* @__PURE__ */ new Map();
23
11
  let onDiskConfig, onDiskConfigLoaded = !1;
24
- const RELEVANT_KEYWORDS = ["gql", "graphql", "GraphQL"], processor = {
12
+ const RELEVANT_KEYWORDS = ["gql", "graphql", "GraphQL"], processor = exports.processor = {
25
13
  meta: {
26
14
  name: "@graphql-eslint/processor",
27
- version: import_meta.version
15
+ version: _metajs.version
28
16
  },
29
17
  supportsAutofix: !0,
30
18
  preprocess(code, filePath) {
31
- onDiskConfigLoaded || (onDiskConfig = (0, import_graphql_config2.loadOnDiskGraphQLConfig)(filePath), onDiskConfigLoaded = !0);
19
+ onDiskConfigLoaded || (onDiskConfig = _graphqlconfigjs.loadOnDiskGraphQLConfig.call(void 0, filePath), onDiskConfigLoaded = !0);
32
20
  let keywords = RELEVANT_KEYWORDS;
33
- const pluckConfig = onDiskConfig?.getProjectForFile(filePath).extensions.pluckConfig;
21
+ const pluckConfig = _optionalChain([onDiskConfig, 'optionalAccess', _ => _.getProjectForFile, 'call', _2 => _2(filePath), 'access', _3 => _3.extensions, 'access', _4 => _4.pluckConfig]);
34
22
  if (pluckConfig) {
35
23
  const {
36
24
  modules = [],
@@ -41,16 +29,16 @@ const RELEVANT_KEYWORDS = ["gql", "graphql", "GraphQL"], processor = {
41
29
  ...new Set(
42
30
  [
43
31
  ...modules.map(({ identifier }) => identifier),
44
- ...(0, import_utils.asArray)(globalGqlIdentifierName),
32
+ ..._utils.asArray.call(void 0, globalGqlIdentifierName),
45
33
  gqlMagicComment
46
- ].filter(import_utils2.truthy)
34
+ ].filter(_utilsjs.truthy)
47
35
  )
48
36
  ];
49
37
  }
50
38
  if (keywords.every((keyword) => !code.includes(keyword)))
51
39
  return [code];
52
40
  try {
53
- const blocks = (0, import_graphql_tag_pluck.gqlPluckFromCodeStringSync)(filePath, code, {
41
+ const blocks = _graphqltagpluck.gqlPluckFromCodeStringSync.call(void 0, filePath, code, {
54
42
  skipIndent: !0,
55
43
  ...pluckConfig
56
44
  }).map((item) => ({
@@ -66,8 +54,8 @@ const RELEVANT_KEYWORDS = ["gql", "graphql", "GraphQL"], processor = {
66
54
  /* source code must be provided and be last */
67
55
  ];
68
56
  } catch (error) {
69
- return error instanceof Error && (error.message = `[graphql-eslint] Error while preprocessing "${(0, import_node_path.relative)(
70
- import_utils2.CWD,
57
+ return error instanceof Error && (error.message = `[graphql-eslint] Error while preprocessing "${_nodepath.relative.call(void 0,
58
+ _utilsjs.CWD,
71
59
  filePath
72
60
  )}" file
73
61
 
@@ -80,7 +68,7 @@ ${error.message}`), console.error(error), [code];
80
68
  const { lineOffset, offset } = blocks[i];
81
69
  for (const message of messages[i] || []) {
82
70
  if (/\.(vue|svelte)$/.test(filePath)) {
83
- delete message.endLine, delete message.endColumn, delete message.fix, delete message.suggestions, Object.assign(message, import_utils2.REPORT_ON_FIRST_CHARACTER);
71
+ delete message.endLine, delete message.endColumn, delete message.fix, delete message.suggestions, Object.assign(message, _utilsjs.REPORT_ON_FIRST_CHARACTER);
84
72
  continue;
85
73
  }
86
74
  message.line += lineOffset, typeof message.endLine == "number" && (message.endLine += lineOffset), message.fix && (message.fix.range[0] += offset, message.fix.range[1] += offset);
@@ -93,7 +81,6 @@ ${error.message}`), console.error(error), [code];
93
81
  return messages.flat().sort((a, b) => a.line - b.line || a.column - b.column);
94
82
  }
95
83
  };
96
- // Annotate the CommonJS export names for ESM import in node:
97
- 0 && (module.exports = {
98
- processor
99
- });
84
+
85
+
86
+ exports.processor = processor;
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.js';
2
+ import { GraphQLESLintRule } from '../../types.cjs';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.js';
8
- import '../siblings.js';
7
+ import '../../estree-converter/types.cjs';
8
+ import '../../siblings.cjs';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -58,7 +58,7 @@ declare const schema: {
58
58
  };
59
59
  readonly groups: {
60
60
  readonly minItems: 2;
61
- readonly description: "Custom order group. Example: `['id', '*', 'createdAt', 'updatedAt']` where `*` says for everything else.";
61
+ readonly description: string;
62
62
  readonly type: "array";
63
63
  readonly uniqueItems: true;
64
64
  readonly items: {
@@ -1,44 +1,21 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
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 alphabetize_exports = {};
25
- __export(alphabetize_exports, {
26
- rule: () => rule
27
- });
28
- module.exports = __toCommonJS(alphabetize_exports);
29
- var import_graphql = require("graphql"), import_lodash = __toESM(require("lodash.lowercase"), 1), import_utils = require("../utils.js");
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } 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
+
3
+
4
+ var _graphql = require('graphql');
5
+ var _lodashlowercase = require('lodash.lowercase'); var _lodashlowercase2 = _interopRequireDefault(_lodashlowercase);
6
+ var _utilsjs = require('../../utils.js');
30
7
  const RULE_ID = "alphabetize", fieldsEnum = [
31
- import_graphql.Kind.OBJECT_TYPE_DEFINITION,
32
- import_graphql.Kind.INTERFACE_TYPE_DEFINITION,
33
- import_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION
8
+ _graphql.Kind.OBJECT_TYPE_DEFINITION,
9
+ _graphql.Kind.INTERFACE_TYPE_DEFINITION,
10
+ _graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION
34
11
  ], selectionsEnum = [
35
- import_graphql.Kind.OPERATION_DEFINITION,
36
- import_graphql.Kind.FRAGMENT_DEFINITION
12
+ _graphql.Kind.OPERATION_DEFINITION,
13
+ _graphql.Kind.FRAGMENT_DEFINITION
37
14
  ], argumentsEnum = [
38
- import_graphql.Kind.FIELD_DEFINITION,
39
- import_graphql.Kind.FIELD,
40
- import_graphql.Kind.DIRECTIVE_DEFINITION,
41
- import_graphql.Kind.DIRECTIVE
15
+ _graphql.Kind.FIELD_DEFINITION,
16
+ _graphql.Kind.FIELD,
17
+ _graphql.Kind.DIRECTIVE_DEFINITION,
18
+ _graphql.Kind.DIRECTIVE
42
19
  ], schema = {
43
20
  type: "array",
44
21
  minItems: 1,
@@ -49,7 +26,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
49
26
  minProperties: 1,
50
27
  properties: {
51
28
  fields: {
52
- ...import_utils.ARRAY_DEFAULT_OPTIONS,
29
+ ..._utilsjs.ARRAY_DEFAULT_OPTIONS,
53
30
  items: {
54
31
  enum: fieldsEnum
55
32
  },
@@ -60,7 +37,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
60
37
  description: "Values of `enum`."
61
38
  },
62
39
  selections: {
63
- ...import_utils.ARRAY_DEFAULT_OPTIONS,
40
+ ..._utilsjs.ARRAY_DEFAULT_OPTIONS,
64
41
  items: {
65
42
  enum: selectionsEnum
66
43
  },
@@ -71,7 +48,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
71
48
  description: "Variables of operations `query`, `mutation` and `subscription`."
72
49
  },
73
50
  arguments: {
74
- ...import_utils.ARRAY_DEFAULT_OPTIONS,
51
+ ..._utilsjs.ARRAY_DEFAULT_OPTIONS,
75
52
  items: {
76
53
  enum: argumentsEnum
77
54
  },
@@ -82,13 +59,20 @@ const RULE_ID = "alphabetize", fieldsEnum = [
82
59
  description: "Definitions \u2013 `type`, `interface`, `enum`, `scalar`, `input`, `union` and `directive`."
83
60
  },
84
61
  groups: {
85
- ...import_utils.ARRAY_DEFAULT_OPTIONS,
62
+ ..._utilsjs.ARRAY_DEFAULT_OPTIONS,
86
63
  minItems: 2,
87
- description: "Custom order group. Example: `['id', '*', 'createdAt', 'updatedAt']` where `*` says for everything else."
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
+ `)
88
72
  }
89
73
  }
90
74
  }
91
- }, rule = {
75
+ }, rule = exports.rule = {
92
76
  meta: {
93
77
  type: "suggestion",
94
78
  fixable: "code",
@@ -99,7 +83,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
99
83
  examples: [
100
84
  {
101
85
  title: "Incorrect",
102
- usage: [{ fields: [import_graphql.Kind.OBJECT_TYPE_DEFINITION] }],
86
+ usage: [{ fields: [_graphql.Kind.OBJECT_TYPE_DEFINITION] }],
103
87
  code: (
104
88
  /* GraphQL */
105
89
  `
@@ -114,7 +98,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
114
98
  },
115
99
  {
116
100
  title: "Correct",
117
- usage: [{ fields: [import_graphql.Kind.OBJECT_TYPE_DEFINITION] }],
101
+ usage: [{ fields: [_graphql.Kind.OBJECT_TYPE_DEFINITION] }],
118
102
  code: (
119
103
  /* GraphQL */
120
104
  `
@@ -159,7 +143,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
159
143
  },
160
144
  {
161
145
  title: "Incorrect",
162
- usage: [{ selections: [import_graphql.Kind.OPERATION_DEFINITION] }],
146
+ usage: [{ selections: [_graphql.Kind.OPERATION_DEFINITION] }],
163
147
  code: (
164
148
  /* GraphQL */
165
149
  `
@@ -175,7 +159,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
175
159
  },
176
160
  {
177
161
  title: "Correct",
178
- usage: [{ selections: [import_graphql.Kind.OPERATION_DEFINITION] }],
162
+ usage: [{ selections: [_graphql.Kind.OPERATION_DEFINITION] }],
179
163
  code: (
180
164
  /* GraphQL */
181
165
  `
@@ -205,8 +189,8 @@ const RULE_ID = "alphabetize", fieldsEnum = [
205
189
  definitions: !0,
206
190
  selections: selectionsEnum,
207
191
  variables: !0,
208
- arguments: [import_graphql.Kind.FIELD, import_graphql.Kind.DIRECTIVE],
209
- groups: ["id", "*", "createdAt", "updatedAt"]
192
+ arguments: [_graphql.Kind.FIELD, _graphql.Kind.DIRECTIVE],
193
+ groups: ["...", "id", "*", "{"]
210
194
  }
211
195
  ]
212
196
  }
@@ -238,26 +222,24 @@ const RULE_ID = "alphabetize", fieldsEnum = [
238
222
  return filteredComments;
239
223
  }
240
224
  function getRangeWithComments(node) {
241
- node.kind === import_graphql.Kind.VARIABLE && (node = node.parent);
225
+ node.kind === _graphql.Kind.VARIABLE && (node = node.parent);
242
226
  const [firstBeforeComment] = getBeforeComments(node), [firstAfterComment] = sourceCode.getCommentsAfter(node), from = firstBeforeComment || node, to = firstAfterComment && isNodeAndCommentOnSameLine(node, firstAfterComment) ? firstAfterComment : node;
243
227
  return [from.range[0], to.range[1]];
244
228
  }
245
229
  function checkNodes(nodes = []) {
246
230
  for (let i = 1; i < nodes.length; i += 1) {
247
- const currNode = nodes[i], currName = "alias" in currNode && currNode.alias?.value || "name" in currNode && currNode.name?.value;
231
+ const currNode = nodes[i], currName = getName(currNode);
248
232
  if (!currName)
249
233
  continue;
250
- const prevNode = nodes[i - 1], prevName = "alias" in prevNode && prevNode.alias?.value || "name" in prevNode && prevNode.name?.value;
234
+ const prevNode = nodes[i - 1], prevName = getName(prevNode);
251
235
  if (prevName) {
252
236
  const compareResult = prevName.localeCompare(currName), { groups } = opts;
253
237
  let shouldSortByGroup = !1;
254
- if (groups?.length) {
238
+ if (_optionalChain([groups, 'optionalAccess', _ => _.length])) {
255
239
  if (!groups.includes("*"))
256
240
  throw new Error("`groups` option should contain `*` string.");
257
- let indexForPrev = groups.indexOf(prevName);
258
- indexForPrev === -1 && (indexForPrev = groups.indexOf("*"));
259
- let indexForCurr = groups.indexOf(currName);
260
- 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)
261
243
  continue;
262
244
  }
263
245
  if (!shouldSortByGroup && !(compareResult === 1) && (!(compareResult === 0) || !prevNode.kind.endsWith("Extension") || currNode.kind.endsWith("Extension")))
@@ -268,8 +250,8 @@ const RULE_ID = "alphabetize", fieldsEnum = [
268
250
  node: "alias" in currNode && currNode.alias || currNode.name,
269
251
  messageId: RULE_ID,
270
252
  data: {
271
- currNode: (0, import_utils.displayNodeName)(currNode),
272
- prevNode: prevName ? (0, import_utils.displayNodeName)(prevNode) : (0, import_lodash.default)(prevNode.kind)
253
+ currNode: _utilsjs.displayNodeName.call(void 0, currNode),
254
+ prevNode: prevName ? _utilsjs.displayNodeName.call(void 0, prevNode) : _lodashlowercase2.default.call(void 0, prevNode.kind)
273
255
  },
274
256
  *fix(fixer) {
275
257
  const prevRange = getRangeWithComments(prevNode), currRange = getRangeWithComments(currNode);
@@ -284,24 +266,24 @@ const RULE_ID = "alphabetize", fieldsEnum = [
284
266
  });
285
267
  }
286
268
  }
287
- const opts = context.options[0], fields = new Set(opts.fields ?? []), listeners = {}, fieldsSelector = [
288
- fields.has(import_graphql.Kind.OBJECT_TYPE_DEFINITION) && [
289
- import_graphql.Kind.OBJECT_TYPE_DEFINITION,
290
- import_graphql.Kind.OBJECT_TYPE_EXTENSION
269
+ const opts = context.options[0], fields = new Set(_nullishCoalesce(opts.fields, () => ( []))), listeners = {}, fieldsSelector = [
270
+ fields.has(_graphql.Kind.OBJECT_TYPE_DEFINITION) && [
271
+ _graphql.Kind.OBJECT_TYPE_DEFINITION,
272
+ _graphql.Kind.OBJECT_TYPE_EXTENSION
291
273
  ],
292
- fields.has(import_graphql.Kind.INTERFACE_TYPE_DEFINITION) && [
293
- import_graphql.Kind.INTERFACE_TYPE_DEFINITION,
294
- import_graphql.Kind.INTERFACE_TYPE_EXTENSION
274
+ fields.has(_graphql.Kind.INTERFACE_TYPE_DEFINITION) && [
275
+ _graphql.Kind.INTERFACE_TYPE_DEFINITION,
276
+ _graphql.Kind.INTERFACE_TYPE_EXTENSION
295
277
  ],
296
- fields.has(import_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION) && [
297
- import_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION,
298
- import_graphql.Kind.INPUT_OBJECT_TYPE_EXTENSION
278
+ fields.has(_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION) && [
279
+ _graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION,
280
+ _graphql.Kind.INPUT_OBJECT_TYPE_EXTENSION
299
281
  ]
300
- ].filter(import_utils.truthy).flat().join(","), selectionsSelector = opts.selections?.join(","), argumentsSelector = opts.arguments?.join(",");
282
+ ].filter(_utilsjs.truthy).flat().join(","), selectionsSelector = _optionalChain([opts, 'access', _2 => _2.selections, 'optionalAccess', _3 => _3.join, 'call', _4 => _4(",")]), argumentsSelector = _optionalChain([opts, 'access', _5 => _5.arguments, 'optionalAccess', _6 => _6.join, 'call', _7 => _7(",")]);
301
283
  if (fieldsSelector && (listeners[fieldsSelector] = (node) => {
302
284
  checkNodes(node.fields);
303
285
  }), opts.values) {
304
- const enumValuesSelector = [import_graphql.Kind.ENUM_TYPE_DEFINITION, import_graphql.Kind.ENUM_TYPE_EXTENSION].join(",");
286
+ const enumValuesSelector = [_graphql.Kind.ENUM_TYPE_DEFINITION, _graphql.Kind.ENUM_TYPE_EXTENSION].join(",");
305
287
  listeners[enumValuesSelector] = (node) => {
306
288
  checkNodes(node.values);
307
289
  };
@@ -309,7 +291,7 @@ const RULE_ID = "alphabetize", fieldsEnum = [
309
291
  return selectionsSelector && (listeners[`:matches(${selectionsSelector}) SelectionSet`] = (node) => {
310
292
  checkNodes(node.selections);
311
293
  }), opts.variables && (listeners.OperationDefinition = (node) => {
312
- checkNodes(node.variableDefinitions?.map((varDef) => varDef.variable));
294
+ checkNodes(_optionalChain([node, 'access', _8 => _8.variableDefinitions, 'optionalAccess', _9 => _9.map, 'call', _10 => _10((varDef) => varDef.variable)]));
313
295
  }), argumentsSelector && (listeners[argumentsSelector] = (node) => {
314
296
  checkNodes(node.arguments);
315
297
  }), opts.definitions && (listeners.Document = (node) => {
@@ -317,7 +299,17 @@ const RULE_ID = "alphabetize", fieldsEnum = [
317
299
  }), listeners;
318
300
  }
319
301
  };
320
- // Annotate the CommonJS export names for ESM import in node:
321
- 0 && (module.exports = {
322
- rule
323
- });
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 === _graphql.Kind.FRAGMENT_SPREAD && (index = groups.indexOf("...")), index === -1 && (index = groups.indexOf("*")), index;
308
+ }
309
+ function getName(node) {
310
+ return "alias" in node && _optionalChain([node, 'access', _11 => _11.alias, 'optionalAccess', _12 => _12.value]) || //
311
+ "name" in node && _optionalChain([node, 'access', _13 => _13.name, 'optionalAccess', _14 => _14.value]) || "";
312
+ }
313
+
314
+
315
+ exports.rule = rule;
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.js';
2
+ import { GraphQLESLintRule } from '../../types.cjs';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.js';
8
- import '../siblings.js';
7
+ import '../../estree-converter/types.cjs';
8
+ import '../../siblings.cjs';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -1,24 +1,5 @@
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 description_style_exports = {};
17
- __export(description_style_exports, {
18
- rule: () => rule
19
- });
20
- module.exports = __toCommonJS(description_style_exports);
21
- var import_utils = require("../utils.js");
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../../chunk-UIAXBAMD.js');
2
+ var _utilsjs = require('../../utils.js');
22
3
  const schema = {
23
4
  type: "array",
24
5
  maxItems: 1,
@@ -33,7 +14,7 @@ const schema = {
33
14
  }
34
15
  }
35
16
  }
36
- }, rule = {
17
+ }, rule = exports.rule = {
37
18
  meta: {
38
19
  type: "suggestion",
39
20
  hasSuggestions: !0,
@@ -79,7 +60,7 @@ const schema = {
79
60
  [`.description[type=StringValue][block!=${isBlock}]`](node) {
80
61
  context.report({
81
62
  loc: isBlock ? node.loc : node.loc.start,
82
- message: `Unexpected ${isBlock ? "inline" : "block"} description for ${(0, import_utils.getNodeName)(
63
+ message: `Unexpected ${isBlock ? "inline" : "block"} description for ${_utilsjs.getNodeName.call(void 0,
83
64
  node.parent
84
65
  )}`,
85
66
  suggest: [
@@ -96,7 +77,6 @@ const schema = {
96
77
  };
97
78
  }
98
79
  };
99
- // Annotate the CommonJS export names for ESM import in node:
100
- 0 && (module.exports = {
101
- rule
102
- });
80
+
81
+
82
+ exports.rule = rule;