@graphql-eslint/eslint-plugin 4.0.0-alpha.5 → 4.0.0-alpha.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (215) 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 +165 -10
  17. package/cjs/index.js +24 -41
  18. package/cjs/meta.d.cts +1 -1
  19. package/cjs/meta.js +5 -34
  20. package/cjs/parser.d.cts +1 -1
  21. package/cjs/parser.js +29 -49
  22. package/cjs/processor.d.cts +1 -1
  23. package/cjs/processor.js +22 -35
  24. package/{esm/rules/alphabetize.d.ts → cjs/rules/alphabetize/index.d.cts} +3 -3
  25. package/cjs/rules/{alphabetize.js → alphabetize/index.js} +47 -71
  26. package/{esm/rules/description-style.d.ts → cjs/rules/description-style/index.d.cts} +3 -3
  27. package/cjs/rules/{description-style.js → description-style/index.js} +7 -27
  28. package/cjs/rules/graphql-js-validation.js +93 -70
  29. package/cjs/rules/index.d.cts +5 -5
  30. package/cjs/rules/index.js +74 -60
  31. package/{esm/rules/input-name.d.ts → cjs/rules/input-name/index.d.cts} +3 -3
  32. package/cjs/rules/{input-name.js → input-name/index.js} +10 -28
  33. package/{esm/rules/lone-executable-definition.d.ts → cjs/rules/lone-executable-definition/index.d.cts} +3 -3
  34. package/cjs/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +13 -32
  35. package/cjs/rules/{match-document-filename.d.cts → match-document-filename/index.d.cts} +4 -4
  36. package/cjs/rules/{match-document-filename.js → match-document-filename/index.js} +20 -34
  37. package/{esm/rules/naming-convention.d.ts → cjs/rules/naming-convention/index.d.cts} +3 -3
  38. package/cjs/rules/{naming-convention.js → naming-convention/index.js} +41 -54
  39. package/cjs/rules/no-anonymous-operations/index.d.cts +13 -0
  40. package/cjs/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +9 -28
  41. package/cjs/rules/{no-deprecated.d.cts → no-deprecated/index.d.cts} +3 -3
  42. package/cjs/rules/{no-deprecated.js → no-deprecated/index.js} +11 -30
  43. package/cjs/rules/no-duplicate-fields/index.d.cts +13 -0
  44. package/cjs/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +8 -28
  45. package/cjs/rules/{no-hashtag-description.d.cts → no-hashtag-description/index.d.cts} +3 -3
  46. package/cjs/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +11 -31
  47. package/cjs/rules/no-one-place-fragments/index.d.cts +13 -0
  48. package/cjs/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +11 -29
  49. package/cjs/rules/{no-root-type.d.cts → no-root-type/index.d.cts} +3 -3
  50. package/cjs/rules/{no-root-type.js → no-root-type/index.js} +9 -29
  51. package/cjs/rules/no-scalar-result-type-on-mutation/index.d.cts +13 -0
  52. package/cjs/rules/no-scalar-result-type-on-mutation/index.js +69 -0
  53. package/cjs/rules/no-typename-prefix/index.d.cts +13 -0
  54. package/cjs/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +5 -25
  55. package/cjs/rules/no-unreachable-types/index.d.cts +13 -0
  56. package/cjs/rules/no-unreachable-types/index.js +155 -0
  57. package/cjs/rules/no-unused-fields/index.d.cts +13 -0
  58. package/cjs/rules/{no-unused-fields.js → no-unused-fields/index.js} +12 -30
  59. package/{esm/rules/relay-arguments.d.ts → cjs/rules/relay-arguments/index.d.cts} +3 -3
  60. package/cjs/rules/{relay-arguments.js → relay-arguments/index.js} +11 -30
  61. package/{esm/rules/relay-connection-types.d.ts → cjs/rules/relay-connection-types/index.d.cts} +3 -3
  62. package/cjs/rules/{relay-connection-types.js → relay-connection-types/index.js} +19 -40
  63. package/{esm/rules/relay-edge-types.d.ts → cjs/rules/relay-edge-types/index.d.cts} +3 -3
  64. package/cjs/rules/{relay-edge-types.js → relay-edge-types/index.js} +30 -43
  65. package/cjs/rules/relay-page-info/index.d.cts +13 -0
  66. package/cjs/rules/{relay-page-info.js → relay-page-info/index.js} +12 -30
  67. package/{esm/rules/require-deprecation-date.d.ts → cjs/rules/require-deprecation-date/index.d.cts} +3 -3
  68. package/cjs/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +13 -32
  69. package/cjs/rules/require-deprecation-reason/index.d.cts +13 -0
  70. package/cjs/rules/require-deprecation-reason/index.js +66 -0
  71. package/cjs/rules/{require-description.d.cts → require-description/index.d.cts} +3 -3
  72. package/cjs/rules/{require-description.js → require-description/index.js} +30 -44
  73. package/cjs/rules/require-field-of-type-query-in-mutation-result/index.d.cts +13 -0
  74. package/cjs/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +10 -29
  75. package/cjs/rules/require-import-fragment/index.d.cts +13 -0
  76. package/cjs/rules/{require-import-fragment.js → require-import-fragment/index.js} +11 -38
  77. package/cjs/rules/require-nullable-fields-with-oneof/index.d.cts +13 -0
  78. package/cjs/rules/require-nullable-fields-with-oneof/index.js +62 -0
  79. package/cjs/rules/require-nullable-result-in-root/index.d.cts +13 -0
  80. package/cjs/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +12 -31
  81. package/cjs/rules/{require-selections.d.cts → require-selections/index.d.cts} +3 -3
  82. package/cjs/rules/{require-selections.js → require-selections/index.js} +38 -43
  83. package/cjs/rules/require-type-pattern-with-oneof/index.d.cts +13 -0
  84. package/cjs/rules/require-type-pattern-with-oneof/index.js +63 -0
  85. package/{esm/rules/selection-set-depth.d.ts → cjs/rules/selection-set-depth/index.d.cts} +3 -3
  86. package/cjs/rules/{selection-set-depth.js → selection-set-depth/index.js} +15 -41
  87. package/cjs/rules/{strict-id-in-types.d.cts → strict-id-in-types/index.d.cts} +3 -3
  88. package/cjs/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +26 -39
  89. package/cjs/rules/unique-enum-value-names/index.d.cts +13 -0
  90. package/cjs/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +10 -29
  91. package/{esm/rules/unique-fragment-name.d.ts → cjs/rules/unique-fragment-name/index.d.cts} +3 -3
  92. package/cjs/rules/unique-fragment-name/index.js +87 -0
  93. package/cjs/rules/unique-operation-name/index.d.cts +13 -0
  94. package/cjs/rules/{unique-operation-name.js → unique-operation-name/index.js} +7 -27
  95. package/cjs/schema.js +11 -36
  96. package/cjs/siblings.js +17 -33
  97. package/cjs/types.js +1 -14
  98. package/cjs/utils.d.cts +2 -2
  99. package/cjs/utils.js +71 -115
  100. package/esm/configs/index.d.ts +15 -5
  101. package/esm/configs/index.js +17 -7
  102. package/esm/index.d.ts +165 -10
  103. package/esm/index.js +9 -2
  104. package/esm/meta.d.ts +1 -1
  105. package/esm/meta.js +1 -2
  106. package/esm/parser.d.ts +1 -1
  107. package/esm/processor.d.ts +1 -1
  108. package/{cjs/rules/alphabetize.d.cts → esm/rules/alphabetize/index.d.ts} +3 -3
  109. package/esm/rules/{alphabetize.js → alphabetize/index.js} +2 -2
  110. package/{cjs/rules/description-style.d.cts → esm/rules/description-style/index.d.ts} +3 -3
  111. package/esm/rules/{description-style.js → description-style/index.js} +2 -2
  112. package/esm/rules/index.d.ts +5 -5
  113. package/esm/rules/index.js +34 -34
  114. package/{cjs/rules/input-name.d.cts → esm/rules/input-name/index.d.ts} +3 -3
  115. package/esm/rules/{input-name.js → input-name/index.js} +1 -1
  116. package/{cjs/rules/lone-executable-definition.d.cts → esm/rules/lone-executable-definition/index.d.ts} +3 -3
  117. package/esm/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +2 -2
  118. package/esm/rules/{match-document-filename.d.ts → match-document-filename/index.d.ts} +4 -4
  119. package/esm/rules/{match-document-filename.js → match-document-filename/index.js} +2 -2
  120. package/{cjs/rules/naming-convention.d.cts → esm/rules/naming-convention/index.d.ts} +3 -3
  121. package/esm/rules/{naming-convention.js → naming-convention/index.js} +2 -2
  122. package/{cjs/rules/no-anonymous-operations.d.cts → esm/rules/no-anonymous-operations/index.d.ts} +3 -3
  123. package/esm/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +2 -2
  124. package/esm/rules/{no-deprecated.d.ts → no-deprecated/index.d.ts} +3 -3
  125. package/esm/rules/{no-deprecated.js → no-deprecated/index.js} +2 -2
  126. package/{cjs/rules/no-one-place-fragments.d.cts → esm/rules/no-duplicate-fields/index.d.ts} +3 -3
  127. package/esm/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +1 -1
  128. package/esm/rules/{no-hashtag-description.d.ts → no-hashtag-description/index.d.ts} +3 -3
  129. package/esm/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +2 -2
  130. package/{cjs/rules/no-duplicate-fields.d.cts → esm/rules/no-one-place-fragments/index.d.ts} +3 -3
  131. package/esm/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +2 -2
  132. package/esm/rules/{no-root-type.d.ts → no-root-type/index.d.ts} +3 -3
  133. package/esm/rules/{no-root-type.js → no-root-type/index.js} +2 -2
  134. package/{cjs/rules/no-scalar-result-type-on-mutation.d.cts → esm/rules/no-scalar-result-type-on-mutation/index.d.ts} +3 -3
  135. package/esm/rules/{no-scalar-result-type-on-mutation.js → no-scalar-result-type-on-mutation/index.js} +2 -2
  136. package/esm/rules/no-typename-prefix/index.d.ts +13 -0
  137. package/esm/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +1 -1
  138. package/esm/rules/no-unreachable-types/index.d.ts +13 -0
  139. package/esm/rules/{no-unreachable-types.js → no-unreachable-types/index.js} +3 -3
  140. package/esm/rules/no-unused-fields/index.d.ts +13 -0
  141. package/esm/rules/{no-unused-fields.js → no-unused-fields/index.js} +3 -3
  142. package/{cjs/rules/relay-arguments.d.cts → esm/rules/relay-arguments/index.d.ts} +3 -3
  143. package/esm/rules/{relay-arguments.js → relay-arguments/index.js} +2 -2
  144. package/{cjs/rules/relay-connection-types.d.cts → esm/rules/relay-connection-types/index.d.ts} +3 -3
  145. package/esm/rules/{relay-connection-types.js → relay-connection-types/index.js} +1 -1
  146. package/{cjs/rules/relay-edge-types.d.cts → esm/rules/relay-edge-types/index.d.ts} +3 -3
  147. package/esm/rules/{relay-edge-types.js → relay-edge-types/index.js} +2 -2
  148. package/esm/rules/relay-page-info/index.d.ts +13 -0
  149. package/esm/rules/{relay-page-info.js → relay-page-info/index.js} +3 -3
  150. package/{cjs/rules/require-deprecation-date.d.cts → esm/rules/require-deprecation-date/index.d.ts} +3 -3
  151. package/esm/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +3 -3
  152. package/esm/rules/require-deprecation-reason/index.d.ts +13 -0
  153. package/esm/rules/{require-deprecation-reason.js → require-deprecation-reason/index.js} +3 -3
  154. package/esm/rules/{require-description.d.ts → require-description/index.d.ts} +3 -3
  155. package/esm/rules/{require-description.js → require-description/index.js} +2 -2
  156. package/esm/rules/require-field-of-type-query-in-mutation-result/index.d.ts +13 -0
  157. package/esm/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +2 -2
  158. package/esm/rules/require-import-fragment/index.d.ts +13 -0
  159. package/esm/rules/{require-import-fragment.js → require-import-fragment/index.js} +2 -2
  160. package/esm/rules/require-nullable-fields-with-oneof/index.d.ts +13 -0
  161. package/esm/rules/{require-nullable-fields-with-oneof.js → require-nullable-fields-with-oneof/index.js} +2 -2
  162. package/esm/rules/require-nullable-result-in-root/index.d.ts +13 -0
  163. package/esm/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +2 -2
  164. package/esm/rules/{require-selections.d.ts → require-selections/index.d.ts} +3 -3
  165. package/esm/rules/{require-selections.js → require-selections/index.js} +3 -4
  166. package/esm/rules/require-type-pattern-with-oneof/index.d.ts +13 -0
  167. package/esm/rules/{require-type-pattern-with-oneof.js → require-type-pattern-with-oneof/index.js} +2 -2
  168. package/{cjs/rules/selection-set-depth.d.cts → esm/rules/selection-set-depth/index.d.ts} +3 -3
  169. package/esm/rules/{selection-set-depth.js → selection-set-depth/index.js} +2 -2
  170. package/esm/rules/{strict-id-in-types.d.ts → strict-id-in-types/index.d.ts} +3 -3
  171. package/esm/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +2 -2
  172. package/esm/rules/unique-enum-value-names/index.d.ts +13 -0
  173. package/esm/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +2 -2
  174. package/{cjs/rules/unique-fragment-name.d.cts → esm/rules/unique-fragment-name/index.d.ts} +3 -3
  175. package/esm/rules/{unique-fragment-name.js → unique-fragment-name/index.js} +3 -3
  176. package/esm/rules/unique-operation-name/index.d.ts +13 -0
  177. package/esm/rules/{unique-operation-name.js → unique-operation-name/index.js} +2 -2
  178. package/esm/utils.d.ts +2 -2
  179. package/esm/utils.js +2 -2
  180. package/index.browser.js +54 -115
  181. package/package.json +2 -2
  182. package/cjs/rules/no-scalar-result-type-on-mutation.js +0 -88
  183. package/cjs/rules/no-typename-prefix.d.cts +0 -13
  184. package/cjs/rules/no-unreachable-types.d.cts +0 -13
  185. package/cjs/rules/no-unreachable-types.js +0 -175
  186. package/cjs/rules/no-unused-fields.d.cts +0 -13
  187. package/cjs/rules/relay-page-info.d.cts +0 -13
  188. package/cjs/rules/require-deprecation-reason.d.cts +0 -13
  189. package/cjs/rules/require-deprecation-reason.js +0 -85
  190. package/cjs/rules/require-field-of-type-query-in-mutation-result.d.cts +0 -13
  191. package/cjs/rules/require-import-fragment.d.cts +0 -13
  192. package/cjs/rules/require-nullable-fields-with-oneof.d.cts +0 -13
  193. package/cjs/rules/require-nullable-fields-with-oneof.js +0 -81
  194. package/cjs/rules/require-nullable-result-in-root.d.cts +0 -13
  195. package/cjs/rules/require-type-pattern-with-oneof.d.cts +0 -13
  196. package/cjs/rules/require-type-pattern-with-oneof.js +0 -83
  197. package/cjs/rules/unique-enum-value-names.d.cts +0 -13
  198. package/cjs/rules/unique-fragment-name.js +0 -106
  199. package/cjs/rules/unique-operation-name.d.cts +0 -13
  200. package/esm/rules/no-anonymous-operations.d.ts +0 -13
  201. package/esm/rules/no-duplicate-fields.d.ts +0 -13
  202. package/esm/rules/no-one-place-fragments.d.ts +0 -13
  203. package/esm/rules/no-scalar-result-type-on-mutation.d.ts +0 -13
  204. package/esm/rules/no-typename-prefix.d.ts +0 -13
  205. package/esm/rules/no-unreachable-types.d.ts +0 -13
  206. package/esm/rules/no-unused-fields.d.ts +0 -13
  207. package/esm/rules/relay-page-info.d.ts +0 -13
  208. package/esm/rules/require-deprecation-reason.d.ts +0 -13
  209. package/esm/rules/require-field-of-type-query-in-mutation-result.d.ts +0 -13
  210. package/esm/rules/require-import-fragment.d.ts +0 -13
  211. package/esm/rules/require-nullable-fields-with-oneof.d.ts +0 -13
  212. package/esm/rules/require-nullable-result-in-root.d.ts +0 -13
  213. package/esm/rules/require-type-pattern-with-oneof.d.ts +0 -13
  214. package/esm/rules/unique-enum-value-names.d.ts +0 -13
  215. package/esm/rules/unique-operation-name.d.ts +0 -13
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.cjs';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.cjs';
8
+ import '../../siblings.cjs';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,25 +1,6 @@
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_operation_name_exports = {};
17
- __export(unique_operation_name_exports, {
18
- rule: () => rule
19
- });
20
- module.exports = __toCommonJS(unique_operation_name_exports);
21
- var import_unique_fragment_name = require("./unique-fragment-name.js");
22
- const RULE_ID = "unique-operation-name", rule = {
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../../chunk-UIAXBAMD.js');
2
+ var _indexjs = require('../unique-fragment-name/index.js');
3
+ const RULE_ID = "unique-operation-name", rule = exports.rule = {
23
4
  meta: {
24
5
  type: "suggestion",
25
6
  docs: {
@@ -82,12 +63,11 @@ const RULE_ID = "unique-operation-name", rule = {
82
63
  create(context) {
83
64
  return {
84
65
  "OperationDefinition[name!=undefined]"(node) {
85
- (0, import_unique_fragment_name.checkNode)(context, node, RULE_ID);
66
+ _indexjs.checkNode.call(void 0, context, node, RULE_ID);
86
67
  }
87
68
  };
88
69
  }
89
70
  };
90
- // Annotate the CommonJS export names for ESM import in node:
91
- 0 && (module.exports = {
92
- rule
93
- });
71
+
72
+
73
+ exports.rule = rule;
package/cjs/schema.js CHANGED
@@ -1,33 +1,9 @@
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 schema_exports = {};
25
- __export(schema_exports, {
26
- getSchema: () => getSchema
27
- });
28
- module.exports = __toCommonJS(schema_exports);
29
- var import_debug = __toESM(require("debug"), 1), import_fast_glob = __toESM(require("fast-glob"), 1), import_graphql = require("graphql"), import_cache = require("./cache.js");
30
- const schemaCache = new import_cache.ModuleCache(), debug = (0, import_debug.default)("graphql-eslint:schema");
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }require('./chunk-UIAXBAMD.js');
2
+ var _debug = require('debug'); var _debug2 = _interopRequireDefault(_debug);
3
+ var _fastglob = require('fast-glob'); var _fastglob2 = _interopRequireDefault(_fastglob);
4
+ var _graphql = require('graphql');
5
+ var _cachejs = require('./cache.js');
6
+ const schemaCache = new (0, _cachejs.ModuleCache)(), debug = _debug2.default.call(void 0, "graphql-eslint:schema");
31
7
  function getSchema(project) {
32
8
  const schemaKey = project.schema;
33
9
  if (!schemaKey)
@@ -40,13 +16,12 @@ function getSchema(project) {
40
16
  pluckConfig: project.extensions.pluckConfig
41
17
  });
42
18
  if (debug.enabled) {
43
- debug("Schema loaded: %o", schema instanceof import_graphql.GraphQLSchema);
44
- const schemaPaths = import_fast_glob.default.sync(project.schema, { absolute: !0 });
19
+ debug("Schema loaded: %o", schema instanceof _graphql.GraphQLSchema);
20
+ const schemaPaths = _fastglob2.default.sync(project.schema, { absolute: !0 });
45
21
  debug("Schema pointers %O", schemaPaths);
46
22
  }
47
23
  return schemaCache.set(schemaKey, schema), schema;
48
24
  }
49
- // Annotate the CommonJS export names for ESM import in node:
50
- 0 && (module.exports = {
51
- getSchema
52
- });
25
+
26
+
27
+ exports.getSchema = getSchema;
package/cjs/siblings.js CHANGED
@@ -1,29 +1,14 @@
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 siblings_exports = {};
17
- __export(siblings_exports, {
18
- getSiblings: () => getSiblings
19
- });
20
- module.exports = __toCommonJS(siblings_exports);
21
- var import_graphql = require("graphql"), 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
+
3
+
4
+
5
+ var _graphql = require('graphql');
6
+ var _utilsjs = require('./utils.js');
22
7
  const siblingOperationsCache = /* @__PURE__ */ new Map();
23
8
  function getSiblings(documents) {
24
9
  if (documents.length === 0) {
25
10
  let printed = !1;
26
- const noopWarn = () => (printed || (import_utils2.logger.warn(
11
+ const noopWarn = () => (printed || (_utilsjs.logger.warn(
27
12
  "getSiblingOperations was called without any operations. Make sure to set graphql-config `documents` field to make this feature available! See https://the-guild.dev/graphql/config/docs/user/documents for more info"
28
13
  ), printed = !0), []);
29
14
  return {
@@ -45,8 +30,8 @@ function getSiblings(documents) {
45
30
  if (fragmentsCache === null) {
46
31
  const result = [];
47
32
  for (const source of documents)
48
- for (const definition of source.document?.definitions || [])
49
- definition.kind === import_graphql.Kind.FRAGMENT_DEFINITION && result.push({
33
+ for (const definition of _optionalChain([source, 'access', _ => _.document, 'optionalAccess', _2 => _2.definitions]) || [])
34
+ definition.kind === _graphql.Kind.FRAGMENT_DEFINITION && result.push({
50
35
  filePath: source.location,
51
36
  document: definition
52
37
  });
@@ -59,19 +44,19 @@ function getSiblings(documents) {
59
44
  if (cachedOperations === null) {
60
45
  const result = [];
61
46
  for (const source of documents)
62
- for (const definition of source.document?.definitions || [])
63
- definition.kind === import_graphql.Kind.OPERATION_DEFINITION && result.push({
47
+ for (const definition of _optionalChain([source, 'access', _3 => _3.document, 'optionalAccess', _4 => _4.definitions]) || [])
48
+ definition.kind === _graphql.Kind.OPERATION_DEFINITION && result.push({
64
49
  filePath: source.location,
65
50
  document: definition
66
51
  });
67
52
  cachedOperations = result;
68
53
  }
69
54
  return cachedOperations;
70
- }, getFragment = (name) => getFragments().filter((f) => f.document.name.value === name), collectFragments = (selectable, recursive, collected = /* @__PURE__ */ new Map()) => ((0, import_graphql.visit)(selectable, {
55
+ }, getFragment = (name) => getFragments().filter((f) => f.document.name.value === name), collectFragments = (selectable, recursive, collected = /* @__PURE__ */ new Map()) => (_graphql.visit.call(void 0, selectable, {
71
56
  FragmentSpread(spread) {
72
57
  const fragmentName = spread.name.value, [fragment] = getFragment(fragmentName);
73
58
  if (!fragment) {
74
- import_utils2.logger.warn(
59
+ _utilsjs.logger.warn(
75
60
  `Unable to locate fragment named "${fragmentName}", please make sure it's loaded using "parserOptions.operations"`
76
61
  );
77
62
  return;
@@ -84,13 +69,12 @@ function getSiblings(documents) {
84
69
  getFragments,
85
70
  getFragmentByType: (typeName) => getFragments().filter((f) => f.document.typeCondition.name.value === typeName),
86
71
  getFragmentsInUse: (selectable, recursive = !0) => Array.from(collectFragments(selectable, recursive).values()),
87
- getOperation: (name) => getOperations().filter((o) => o.document.name?.value === name),
72
+ getOperation: (name) => getOperations().filter((o) => _optionalChain([o, 'access', _5 => _5.document, 'access', _6 => _6.name, 'optionalAccess', _7 => _7.value]) === name),
88
73
  getOperations,
89
74
  getOperationByType: (type) => getOperations().filter((o) => o.document.operation === type)
90
75
  };
91
76
  return siblingOperationsCache.set(documents, siblingOperations), siblingOperations;
92
77
  }
93
- // Annotate the CommonJS export names for ESM import in node:
94
- 0 && (module.exports = {
95
- getSiblings
96
- });
78
+
79
+
80
+ exports.getSiblings = getSiblings;
package/cjs/types.js CHANGED
@@ -1,14 +1 @@
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 __copyProps = (to, from, except, desc) => {
7
- if (from && typeof from == "object" || typeof from == "function")
8
- for (let key of __getOwnPropNames(from))
9
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
- return to;
11
- };
12
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
13
- var types_exports = {};
14
- module.exports = __toCommonJS(types_exports);
1
+ "use strict";
package/cjs/utils.d.cts CHANGED
@@ -14,7 +14,7 @@ declare const logger: {
14
14
  error: (...args: unknown[]) => void;
15
15
  warn: (...args: unknown[]) => void;
16
16
  };
17
- declare const normalizePath: (path: string) => string;
17
+ declare const slash: (path: string) => string;
18
18
  declare const VIRTUAL_DOCUMENT_REGEX: RegExp;
19
19
  declare const CWD: string;
20
20
  declare const getTypeName: (node: ASTNode) => string;
@@ -42,4 +42,4 @@ declare function truthy<T>(value: T): value is Truthy<T>;
42
42
  declare function displayNodeName(node: GraphQLESTreeNode<ASTNode>): string;
43
43
  declare function getNodeName(node: GraphQLESTreeNode<ASTNode>): string;
44
44
 
45
- export { ARRAY_DEFAULT_OPTIONS, CWD, type CaseStyle, REPORT_ON_FIRST_CHARACTER, TYPES_KINDS, VIRTUAL_DOCUMENT_REGEX, camelCase, convertCase, displayNodeName, englishJoinWords, getLocation, getNodeName, getTypeName, logger, normalizePath, pascalCase, requireGraphQLSchemaFromContext, requireSiblingsOperations, truthy };
45
+ export { ARRAY_DEFAULT_OPTIONS, CWD, type CaseStyle, REPORT_ON_FIRST_CHARACTER, TYPES_KINDS, VIRTUAL_DOCUMENT_REGEX, camelCase, convertCase, displayNodeName, englishJoinWords, getLocation, getNodeName, getTypeName, logger, pascalCase, requireGraphQLSchemaFromContext, requireSiblingsOperations, slash, truthy };
package/cjs/utils.js CHANGED
@@ -1,49 +1,6 @@
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 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);
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
- }, normalizePath = (path) => (path || "").replace(/\\/g, "/"), VIRTUAL_DOCUMENT_REGEX = /\/\d+_document.graphql$/, CWD = process.cwd(), getTypeName = (node) => "type" in node ? getTypeName(node.type) : "name" in node && node.name ? node.name.value : "", TYPES_KINDS = [
76
- import_graphql.Kind.OBJECT_TYPE_DEFINITION,
77
- import_graphql.Kind.INTERFACE_TYPE_DEFINITION,
78
- import_graphql.Kind.ENUM_TYPE_DEFINITION,
79
- import_graphql.Kind.SCALAR_TYPE_DEFINITION,
80
- import_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION,
81
- import_graphql.Kind.UNION_TYPE_DEFINITION
82
- ], pascalCase = (str) => (0, import_lodash.default)(str).split(" ").map((word) => word.charAt(0).toUpperCase() + word.slice(1)).join(""), camelCase = (str) => {
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, import_lodash.default)(str).replace(/ /g, "_");
49
+ return _lodashlowercase2.default.call(void 0, str).replace(/ /g, "_");
93
50
  case "UPPER_CASE":
94
- return (0, import_lodash.default)(str).replace(/ /g, "_").toUpperCase();
51
+ return _lodashlowercase2.default.call(void 0, str).replace(/ /g, "_").toUpperCase();
95
52
  case "kebab-case":
96
- return (0, import_lodash.default)(str).replace(/ /g, "-");
53
+ return _lodashlowercase2.default.call(void 0, str).replace(/ /g, "-");
97
54
  }
98
55
  };
99
56
  function getLocation(start, fieldName = "") {
@@ -109,80 +66,79 @@ 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
- [import_graphql.Kind.OBJECT_TYPE_DEFINITION]: "type",
125
- [import_graphql.Kind.OBJECT_TYPE_EXTENSION]: "type",
126
- [import_graphql.Kind.INTERFACE_TYPE_DEFINITION]: "interface",
127
- [import_graphql.Kind.INTERFACE_TYPE_EXTENSION]: "interface",
128
- [import_graphql.Kind.ENUM_TYPE_DEFINITION]: "enum",
129
- [import_graphql.Kind.ENUM_TYPE_EXTENSION]: "enum",
130
- [import_graphql.Kind.SCALAR_TYPE_DEFINITION]: "scalar",
131
- [import_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION]: "input",
132
- [import_graphql.Kind.INPUT_OBJECT_TYPE_EXTENSION]: "input",
133
- [import_graphql.Kind.UNION_TYPE_DEFINITION]: "union",
134
- [import_graphql.Kind.UNION_TYPE_EXTENSION]: "union",
135
- [import_graphql.Kind.DIRECTIVE_DEFINITION]: "directive",
136
- [import_graphql.Kind.FIELD_DEFINITION]: "field",
137
- [import_graphql.Kind.ENUM_VALUE_DEFINITION]: "enum value",
138
- [import_graphql.Kind.INPUT_VALUE_DEFINITION]: "input value",
139
- [import_graphql.Kind.ARGUMENT]: "argument",
140
- [import_graphql.Kind.VARIABLE]: "variable",
141
- [import_graphql.Kind.FRAGMENT_DEFINITION]: "fragment",
142
- [import_graphql.Kind.OPERATION_DEFINITION]: "operation",
143
- [import_graphql.Kind.FIELD]: "field"
81
+ [_graphql.Kind.OBJECT_TYPE_DEFINITION]: "type",
82
+ [_graphql.Kind.OBJECT_TYPE_EXTENSION]: "type",
83
+ [_graphql.Kind.INTERFACE_TYPE_DEFINITION]: "interface",
84
+ [_graphql.Kind.INTERFACE_TYPE_EXTENSION]: "interface",
85
+ [_graphql.Kind.ENUM_TYPE_DEFINITION]: "enum",
86
+ [_graphql.Kind.ENUM_TYPE_EXTENSION]: "enum",
87
+ [_graphql.Kind.SCALAR_TYPE_DEFINITION]: "scalar",
88
+ [_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION]: "input",
89
+ [_graphql.Kind.INPUT_OBJECT_TYPE_EXTENSION]: "input",
90
+ [_graphql.Kind.UNION_TYPE_DEFINITION]: "union",
91
+ [_graphql.Kind.UNION_TYPE_EXTENSION]: "union",
92
+ [_graphql.Kind.DIRECTIVE_DEFINITION]: "directive",
93
+ [_graphql.Kind.FIELD_DEFINITION]: "field",
94
+ [_graphql.Kind.ENUM_VALUE_DEFINITION]: "enum value",
95
+ [_graphql.Kind.INPUT_VALUE_DEFINITION]: "input value",
96
+ [_graphql.Kind.ARGUMENT]: "argument",
97
+ [_graphql.Kind.VARIABLE]: "variable",
98
+ [_graphql.Kind.FRAGMENT_DEFINITION]: "fragment",
99
+ [_graphql.Kind.OPERATION_DEFINITION]: "operation",
100
+ [_graphql.Kind.FIELD]: "field"
144
101
  };
145
102
  function displayNodeName(node) {
146
- return `${node.kind === import_graphql.Kind.OPERATION_DEFINITION ? node.operation : DisplayNodeNameMap[node.kind]} "${"alias" in node && node.alias?.value || "name" in node && node.name?.value}"`;
103
+ 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
104
  }
148
105
  function getNodeName(node) {
149
106
  switch (node.kind) {
150
- case import_graphql.Kind.OBJECT_TYPE_DEFINITION:
151
- case import_graphql.Kind.OBJECT_TYPE_EXTENSION:
152
- case import_graphql.Kind.INTERFACE_TYPE_DEFINITION:
153
- case import_graphql.Kind.ENUM_TYPE_DEFINITION:
154
- case import_graphql.Kind.SCALAR_TYPE_DEFINITION:
155
- case import_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION:
156
- case import_graphql.Kind.UNION_TYPE_DEFINITION:
157
- case import_graphql.Kind.DIRECTIVE_DEFINITION:
107
+ case _graphql.Kind.OBJECT_TYPE_DEFINITION:
108
+ case _graphql.Kind.OBJECT_TYPE_EXTENSION:
109
+ case _graphql.Kind.INTERFACE_TYPE_DEFINITION:
110
+ case _graphql.Kind.ENUM_TYPE_DEFINITION:
111
+ case _graphql.Kind.SCALAR_TYPE_DEFINITION:
112
+ case _graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION:
113
+ case _graphql.Kind.UNION_TYPE_DEFINITION:
114
+ case _graphql.Kind.DIRECTIVE_DEFINITION:
158
115
  return displayNodeName(node);
159
- case import_graphql.Kind.FIELD_DEFINITION:
160
- case import_graphql.Kind.INPUT_VALUE_DEFINITION:
161
- case import_graphql.Kind.ENUM_VALUE_DEFINITION:
116
+ case _graphql.Kind.FIELD_DEFINITION:
117
+ case _graphql.Kind.INPUT_VALUE_DEFINITION:
118
+ case _graphql.Kind.ENUM_VALUE_DEFINITION:
162
119
  return `${displayNodeName(node)} in ${displayNodeName(node.parent)}`;
163
- case import_graphql.Kind.OPERATION_DEFINITION:
120
+ case _graphql.Kind.OPERATION_DEFINITION:
164
121
  return node.name ? displayNodeName(node) : node.operation;
165
122
  }
166
123
  return "";
167
124
  }
168
- // Annotate the CommonJS export names for ESM import in node:
169
- 0 && (module.exports = {
170
- ARRAY_DEFAULT_OPTIONS,
171
- CWD,
172
- REPORT_ON_FIRST_CHARACTER,
173
- TYPES_KINDS,
174
- VIRTUAL_DOCUMENT_REGEX,
175
- camelCase,
176
- convertCase,
177
- displayNodeName,
178
- englishJoinWords,
179
- getLocation,
180
- getNodeName,
181
- getTypeName,
182
- logger,
183
- normalizePath,
184
- pascalCase,
185
- requireGraphQLSchemaFromContext,
186
- requireSiblingsOperations,
187
- truthy
188
- });
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+ 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;
@@ -4,11 +4,21 @@ declare const configs: {
4
4
  'schema-relay': any;
5
5
  'operations-recommended': any;
6
6
  'operations-all': any;
7
- 'flat/schema-recommended': any;
8
- 'flat/schema-all': any;
9
- 'flat/schema-relay': any;
10
- 'flat/operations-recommended': any;
11
- 'flat/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
+ };
12
22
  };
13
23
 
14
24
  export { configs };
@@ -10,16 +10,26 @@ const configs = {
10
10
  "schema-relay": relayConfig,
11
11
  "operations-recommended": operationsRecommendedConfig,
12
12
  "operations-all": operationsAllConfig,
13
- "flat/schema-recommended": schemaRecommendedConfig.rules,
13
+ "flat/schema-recommended": {
14
+ rules: schemaRecommendedConfig.rules
15
+ },
14
16
  "flat/schema-all": {
15
- ...schemaRecommendedConfig.rules,
16
- ...schemaAllConfig.rules
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
17
27
  },
18
- "flat/schema-relay": relayConfig.rules,
19
- "flat/operations-recommended": operationsRecommendedConfig.rules,
20
28
  "flat/operations-all": {
21
- ...operationsRecommendedConfig.rules,
22
- ...operationsAllConfig.rules
29
+ rules: {
30
+ ...operationsRecommendedConfig.rules,
31
+ ...operationsAllConfig.rules
32
+ }
23
33
  }
24
34
  };
25
35
  export {