@graphql-eslint/eslint-plugin 4.0.0-alpha.0 → 4.0.0-alpha.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (220) hide show
  1. package/README.md +0 -2
  2. package/{esm/cache.d.mts → cjs/cache.d.cts} +1 -1
  3. package/cjs/cache.js +1 -1
  4. package/cjs/configs/index.d.cts +9 -0
  5. package/cjs/configs/index.js +1 -1
  6. package/cjs/documents.js +1 -1
  7. package/{esm/estree-converter/converter.d.mts → cjs/estree-converter/converter.d.cts} +1 -1
  8. package/cjs/estree-converter/index.d.cts +8 -0
  9. package/{esm/estree-converter/types.d.mts → cjs/estree-converter/types.d.cts} +1 -1
  10. package/{esm/estree-converter/utils.d.mts → cjs/estree-converter/utils.d.cts} +3 -3
  11. package/cjs/flat-configs.d.cts +75 -0
  12. package/cjs/flat-configs.js +1 -3
  13. package/{esm/graphql-config.d.mts → cjs/graphql-config.d.cts} +3 -3
  14. package/cjs/graphql-config.js +2 -2
  15. package/{esm/index.d.mts → cjs/index.d.cts} +15 -12
  16. package/cjs/index.js +2 -0
  17. package/cjs/meta.d.cts +4 -0
  18. package/cjs/meta.js +36 -0
  19. package/cjs/package.json +1 -0
  20. package/{esm/parser.d.mts → cjs/parser.d.cts} +12 -5
  21. package/cjs/parser.js +13 -4
  22. package/{esm/processor.d.mts → cjs/processor.d.cts} +5 -1
  23. package/cjs/processor.js +5 -1
  24. package/{esm/rules/alphabetize.d.mts → cjs/rules/alphabetize.d.cts} +5 -5
  25. package/cjs/rules/alphabetize.js +1 -1
  26. package/{esm/rules/description-style.d.mts → cjs/rules/description-style.d.cts} +5 -5
  27. package/{esm/rules/graphql-js-validation.d.mts → cjs/rules/graphql-js-validation.d.cts} +4 -4
  28. package/{esm/rules/index.d.mts → cjs/rules/index.d.cts} +8 -9
  29. package/cjs/rules/index.js +1 -1
  30. package/{esm/rules/input-name.d.mts → cjs/rules/input-name.d.cts} +5 -5
  31. package/{esm/rules/lone-executable-definition.d.mts → cjs/rules/lone-executable-definition.d.cts} +5 -5
  32. package/{esm/rules/match-document-filename.d.mts → cjs/rules/match-document-filename.d.cts} +6 -6
  33. package/cjs/rules/match-document-filename.js +2 -2
  34. package/{esm/rules/naming-convention.d.mts → cjs/rules/naming-convention.d.cts} +5 -5
  35. package/cjs/rules/no-anonymous-operations.d.cts +13 -0
  36. package/{esm/rules/no-deprecated.d.mts → cjs/rules/no-deprecated.d.cts} +4 -4
  37. package/cjs/rules/no-duplicate-fields.d.cts +13 -0
  38. package/{esm/rules/no-hashtag-description.d.mts → cjs/rules/no-hashtag-description.d.cts} +4 -4
  39. package/cjs/rules/no-one-place-fragments.d.cts +13 -0
  40. package/{esm/rules/no-root-type.d.mts → cjs/rules/no-root-type.d.cts} +5 -5
  41. package/cjs/rules/no-scalar-result-type-on-mutation.d.cts +13 -0
  42. package/cjs/rules/no-typename-prefix.d.cts +13 -0
  43. package/cjs/rules/no-unreachable-types.d.cts +13 -0
  44. package/cjs/rules/no-unreachable-types.js +7 -9
  45. package/cjs/rules/no-unused-fields.d.cts +13 -0
  46. package/cjs/rules/no-unused-fields.js +6 -6
  47. package/{esm/rules/relay-arguments.d.mts → cjs/rules/relay-arguments.d.cts} +5 -5
  48. package/{esm/rules/relay-connection-types.d.mts → cjs/rules/relay-connection-types.d.cts} +4 -4
  49. package/{esm/rules/relay-edge-types.d.mts → cjs/rules/relay-edge-types.d.cts} +5 -5
  50. package/cjs/rules/relay-edge-types.js +2 -2
  51. package/cjs/rules/relay-page-info.d.cts +13 -0
  52. package/cjs/rules/relay-page-info.js +1 -1
  53. package/{esm/rules/require-deprecation-date.d.mts → cjs/rules/require-deprecation-date.d.cts} +5 -5
  54. package/cjs/rules/require-deprecation-reason.d.cts +13 -0
  55. package/{esm/rules/require-description.d.mts → cjs/rules/require-description.d.cts} +5 -5
  56. package/cjs/rules/require-description.js +1 -1
  57. package/cjs/rules/require-field-of-type-query-in-mutation-result.d.cts +13 -0
  58. package/cjs/rules/require-import-fragment.d.cts +13 -0
  59. package/cjs/rules/require-import-fragment.js +5 -9
  60. package/cjs/rules/require-nullable-fields-with-oneof.d.cts +13 -0
  61. package/cjs/rules/require-nullable-result-in-root.d.cts +13 -0
  62. package/{esm/rules/require-selections.d.mts → cjs/rules/require-selections.d.cts} +5 -5
  63. package/cjs/rules/require-selections.js +2 -1
  64. package/cjs/rules/require-type-pattern-with-oneof.d.cts +13 -0
  65. package/{esm/rules/selection-set-depth.d.mts → cjs/rules/selection-set-depth.d.cts} +5 -5
  66. package/cjs/rules/selection-set-depth.js +2 -2
  67. package/{esm/rules/strict-id-in-types.d.mts → cjs/rules/strict-id-in-types.d.cts} +5 -5
  68. package/cjs/rules/unique-enum-value-names.d.cts +13 -0
  69. package/{esm/rules/unique-fragment-name.d.mts → cjs/rules/unique-fragment-name.d.cts} +4 -4
  70. package/cjs/rules/unique-operation-name.d.cts +13 -0
  71. package/{esm/schema.d.mts → cjs/schema.d.cts} +3 -3
  72. package/cjs/schema.js +1 -1
  73. package/{esm/siblings.d.mts → cjs/siblings.d.cts} +2 -2
  74. package/{esm/types.d.mts → cjs/types.d.cts} +5 -4
  75. package/{esm/utils.d.mts → cjs/utils.d.cts} +5 -5
  76. package/cjs/utils.js +1 -1
  77. package/{cjs → esm}/cache.d.ts +1 -1
  78. package/esm/cache.js +1 -1
  79. package/esm/configs/index.d.ts +9 -0
  80. package/esm/configs/index.js +1 -1
  81. package/esm/configs/operations-all.js +1 -1
  82. package/esm/configs/operations-recommended.js +1 -1
  83. package/esm/configs/schema-all.js +1 -1
  84. package/esm/configs/schema-recommended.js +1 -1
  85. package/esm/configs/schema-relay.js +1 -1
  86. package/esm/documents.js +1 -1
  87. package/esm/estree-converter/converter.js +1 -1
  88. package/{cjs → esm}/estree-converter/index.d.ts +2 -2
  89. package/{cjs → esm}/estree-converter/types.d.ts +1 -1
  90. package/{cjs → esm}/estree-converter/utils.d.ts +3 -3
  91. package/esm/estree-converter/utils.js +1 -1
  92. package/esm/flat-configs.d.ts +75 -0
  93. package/esm/flat-configs.js +3 -5
  94. package/esm/graphql-config.js +3 -3
  95. package/{cjs → esm}/index.d.ts +7 -4
  96. package/esm/index.js +3 -2
  97. package/esm/meta.d.ts +4 -0
  98. package/esm/meta.js +7 -0
  99. package/{cjs → esm}/parser.d.ts +10 -3
  100. package/esm/parser.js +13 -4
  101. package/{cjs → esm}/processor.d.ts +5 -1
  102. package/esm/processor.js +6 -1
  103. package/{cjs → esm}/rules/alphabetize.d.ts +3 -3
  104. package/esm/rules/alphabetize.js +1 -1
  105. package/{cjs → esm}/rules/description-style.d.ts +3 -3
  106. package/esm/rules/description-style.js +1 -1
  107. package/esm/rules/graphql-js-validation.js +1 -1
  108. package/{cjs → esm}/rules/index.d.ts +4 -5
  109. package/esm/rules/index.js +2 -2
  110. package/{cjs → esm}/rules/input-name.d.ts +3 -3
  111. package/esm/rules/input-name.js +1 -1
  112. package/{cjs → esm}/rules/lone-executable-definition.d.ts +3 -3
  113. package/esm/rules/lone-executable-definition.js +1 -1
  114. package/{cjs → esm}/rules/match-document-filename.d.ts +3 -3
  115. package/esm/rules/match-document-filename.js +3 -3
  116. package/{cjs → esm}/rules/naming-convention.d.ts +3 -3
  117. package/esm/rules/naming-convention.js +1 -1
  118. package/esm/rules/no-anonymous-operations.js +1 -1
  119. package/esm/rules/no-deprecated.js +1 -1
  120. package/esm/rules/no-duplicate-fields.js +1 -1
  121. package/esm/rules/no-hashtag-description.js +1 -1
  122. package/esm/rules/no-one-place-fragments.js +1 -1
  123. package/{cjs → esm}/rules/no-root-type.d.ts +3 -3
  124. package/esm/rules/no-root-type.js +1 -1
  125. package/esm/rules/no-scalar-result-type-on-mutation.js +1 -1
  126. package/esm/rules/no-typename-prefix.js +1 -1
  127. package/esm/rules/no-unreachable-types.js +8 -9
  128. package/esm/rules/no-unused-fields.js +7 -6
  129. package/{cjs → esm}/rules/relay-arguments.d.ts +3 -3
  130. package/esm/rules/relay-arguments.js +1 -1
  131. package/esm/rules/relay-connection-types.js +1 -1
  132. package/{cjs → esm}/rules/relay-edge-types.d.ts +3 -3
  133. package/esm/rules/relay-edge-types.js +3 -3
  134. package/esm/rules/relay-page-info.js +2 -2
  135. package/{cjs → esm}/rules/require-deprecation-date.d.ts +3 -3
  136. package/esm/rules/require-deprecation-date.js +1 -1
  137. package/esm/rules/require-deprecation-reason.js +1 -1
  138. package/{cjs → esm}/rules/require-description.d.ts +3 -3
  139. package/esm/rules/require-description.js +2 -2
  140. package/esm/rules/require-field-of-type-query-in-mutation-result.js +1 -1
  141. package/esm/rules/require-import-fragment.js +5 -9
  142. package/esm/rules/require-nullable-fields-with-oneof.js +1 -1
  143. package/esm/rules/require-nullable-result-in-root.js +1 -1
  144. package/{cjs → esm}/rules/require-selections.d.ts +3 -3
  145. package/esm/rules/require-selections.js +3 -2
  146. package/esm/rules/require-type-pattern-with-oneof.js +1 -1
  147. package/{cjs → esm}/rules/selection-set-depth.d.ts +3 -3
  148. package/esm/rules/selection-set-depth.js +2 -2
  149. package/{cjs → esm}/rules/strict-id-in-types.d.ts +3 -3
  150. package/esm/rules/strict-id-in-types.js +1 -1
  151. package/esm/rules/unique-enum-value-names.js +1 -1
  152. package/esm/rules/unique-fragment-name.js +1 -1
  153. package/esm/rules/unique-operation-name.js +1 -1
  154. package/esm/schema.js +1 -1
  155. package/{cjs → esm}/siblings.d.ts +2 -2
  156. package/esm/siblings.js +1 -1
  157. package/{cjs → esm}/types.d.ts +4 -3
  158. package/{cjs → esm}/utils.d.ts +3 -3
  159. package/esm/utils.js +1 -1
  160. package/{index.browser.mjs → index.browser.js} +885 -785
  161. package/package.json +9 -8
  162. package/cjs/configs/index.d.ts +0 -174
  163. package/cjs/flat-configs.d.ts +0 -307
  164. package/esm/configs/index.d.mts +0 -174
  165. package/esm/estree-converter/index.d.mts +0 -8
  166. package/esm/flat-configs.d.mts +0 -307
  167. package/esm/package.json +0 -1
  168. package/esm/rules/no-anonymous-operations.d.mts +0 -13
  169. package/esm/rules/no-duplicate-fields.d.mts +0 -13
  170. package/esm/rules/no-one-place-fragments.d.mts +0 -13
  171. package/esm/rules/no-scalar-result-type-on-mutation.d.mts +0 -13
  172. package/esm/rules/no-typename-prefix.d.mts +0 -13
  173. package/esm/rules/no-unreachable-types.d.mts +0 -13
  174. package/esm/rules/no-unused-fields.d.mts +0 -13
  175. package/esm/rules/relay-page-info.d.mts +0 -13
  176. package/esm/rules/require-deprecation-reason.d.mts +0 -13
  177. package/esm/rules/require-field-of-type-query-in-mutation-result.d.mts +0 -13
  178. package/esm/rules/require-import-fragment.d.mts +0 -13
  179. package/esm/rules/require-nullable-fields-with-oneof.d.mts +0 -13
  180. package/esm/rules/require-nullable-result-in-root.d.mts +0 -13
  181. package/esm/rules/require-type-pattern-with-oneof.d.mts +0 -13
  182. package/esm/rules/unique-enum-value-names.d.mts +0 -13
  183. package/esm/rules/unique-operation-name.d.mts +0 -13
  184. package/cjs/configs/{operations-all.d.ts → operations-all.d.cts} +0 -0
  185. package/cjs/configs/{operations-recommended.d.ts → operations-recommended.d.cts} +0 -0
  186. package/cjs/configs/{schema-all.d.ts → schema-all.d.cts} +0 -0
  187. package/cjs/configs/{schema-recommended.d.ts → schema-recommended.d.cts} +0 -0
  188. package/cjs/configs/{schema-relay.d.ts → schema-relay.d.cts} +0 -0
  189. package/{esm/documents.d.mts → cjs/documents.d.cts} +1 -1
  190. package/esm/{chunk-U3TKCM4X.js → chunk-UIAXBAMD.js} +0 -0
  191. package/esm/configs/{operations-all.d.mts → operations-all.d.ts} +0 -0
  192. package/esm/configs/{operations-recommended.d.mts → operations-recommended.d.ts} +0 -0
  193. package/esm/configs/{schema-all.d.mts → schema-all.d.ts} +0 -0
  194. package/esm/configs/{schema-recommended.d.mts → schema-recommended.d.ts} +0 -0
  195. package/esm/configs/{schema-relay.d.mts → schema-relay.d.ts} +0 -0
  196. package/{cjs → esm}/documents.d.ts +1 -1
  197. package/{cjs → esm}/estree-converter/converter.d.ts +0 -0
  198. package/{cjs → esm}/graphql-config.d.ts +1 -1
  199. package/{cjs → esm}/rules/graphql-js-validation.d.ts +2 -2
  200. package/{cjs → esm}/rules/no-anonymous-operations.d.ts +2 -2
  201. package/{cjs → esm}/rules/no-deprecated.d.ts +2 -2
  202. package/{cjs → esm}/rules/no-duplicate-fields.d.ts +2 -2
  203. package/{cjs → esm}/rules/no-hashtag-description.d.ts +2 -2
  204. package/{cjs → esm}/rules/no-one-place-fragments.d.ts +2 -2
  205. package/{cjs → esm}/rules/no-scalar-result-type-on-mutation.d.ts +2 -2
  206. package/{cjs → esm}/rules/no-typename-prefix.d.ts +2 -2
  207. package/{cjs → esm}/rules/no-unreachable-types.d.ts +2 -2
  208. package/{cjs → esm}/rules/no-unused-fields.d.ts +2 -2
  209. package/{cjs → esm}/rules/relay-connection-types.d.ts +2 -2
  210. package/{cjs → esm}/rules/relay-page-info.d.ts +2 -2
  211. package/{cjs → esm}/rules/require-deprecation-reason.d.ts +2 -2
  212. package/{cjs → esm}/rules/require-field-of-type-query-in-mutation-result.d.ts +2 -2
  213. package/{cjs → esm}/rules/require-import-fragment.d.ts +2 -2
  214. package/{cjs → esm}/rules/require-nullable-fields-with-oneof.d.ts +2 -2
  215. package/{cjs → esm}/rules/require-nullable-result-in-root.d.ts +2 -2
  216. package/{cjs → esm}/rules/require-type-pattern-with-oneof.d.ts +2 -2
  217. package/{cjs → esm}/rules/unique-enum-value-names.d.ts +2 -2
  218. package/{cjs → esm}/rules/unique-fragment-name.d.ts +1 -1
  219. package/{cjs → esm}/rules/unique-operation-name.d.ts +2 -2
  220. package/{cjs → esm}/schema.d.ts +1 -1
@@ -1,12 +1,12 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.mjs';
2
+ import { GraphQLESLintRule } from '../types.cjs';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
- import '../siblings.mjs';
7
- import '@graphql-tools/utils';
8
- import '../estree-converter/types.mjs';
9
6
  import 'graphql-config';
7
+ import '../estree-converter/types.cjs';
8
+ import '../siblings.cjs';
9
+ import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
12
12
  readonly type: "array";
@@ -63,4 +63,4 @@ declare const schema: {
63
63
  type RuleOptions = FromSchema<typeof schema>;
64
64
  declare const rule: GraphQLESLintRule<RuleOptions>;
65
65
 
66
- export { RuleOptions, rule };
66
+ export { type RuleOptions, rule };
@@ -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,12 +1,12 @@
1
1
  import { ExecutableDefinitionNode } from 'graphql';
2
- import { GraphQLESTreeNode } from '../estree-converter/types.mjs';
3
- import { GraphQLESLintRuleContext, GraphQLESLintRule } from '../types.mjs';
2
+ import { GraphQLESTreeNode } from '../estree-converter/types.cjs';
3
+ import { GraphQLESLintRuleContext, GraphQLESLintRule } from '../types.cjs';
4
4
  import 'eslint';
5
5
  import 'estree';
6
+ import 'graphql-config';
6
7
  import 'json-schema-to-ts';
7
- import '../siblings.mjs';
8
+ import '../siblings.cjs';
8
9
  import '@graphql-tools/utils';
9
- import 'graphql-config';
10
10
 
11
11
  declare const checkNode: (context: GraphQLESLintRuleContext, node: GraphQLESTreeNode<ExecutableDefinitionNode>, ruleId: string) => void;
12
12
  declare const rule: GraphQLESLintRule;
@@ -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,12 +1,12 @@
1
1
  import { GraphQLProjectConfig } from 'graphql-config';
2
- import { Schema } from './types.mjs';
2
+ import { Schema } from './types.cjs';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'json-schema-to-ts';
7
- import './siblings.mjs';
7
+ import './estree-converter/types.cjs';
8
+ import './siblings.cjs';
8
9
  import '@graphql-tools/utils';
9
- import './estree-converter/types.mjs';
10
10
 
11
11
  declare function getSchema(project: GraphQLProjectConfig): Schema;
12
12
 
package/cjs/schema.js CHANGED
@@ -26,7 +26,7 @@ __export(schema_exports, {
26
26
  getSchema: () => getSchema
27
27
  });
28
28
  module.exports = __toCommonJS(schema_exports);
29
- var import_debug = __toESM(require("debug")), import_fast_glob = __toESM(require("fast-glob")), import_graphql = require("graphql"), import_cache = require("./cache.js");
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
30
  const schemaCache = new import_cache.ModuleCache(), debug = (0, import_debug.default)("graphql-eslint:schema");
31
31
  function getSchema(project) {
32
32
  const schemaKey = project.schema;
@@ -1,5 +1,5 @@
1
- import { Source } from '@graphql-tools/utils';
2
1
  import { FragmentDefinitionNode, OperationDefinitionNode, SelectionSetNode, OperationTypeNode } from 'graphql';
2
+ import { Source } from '@graphql-tools/utils';
3
3
 
4
4
  type FragmentSource = {
5
5
  filePath: string;
@@ -21,4 +21,4 @@ type SiblingOperations = {
21
21
  };
22
22
  declare function getSiblings(documents: Source[]): SiblingOperations;
23
23
 
24
- export { FragmentSource, OperationSource, SiblingOperations, getSiblings };
24
+ export { type FragmentSource, type OperationSource, type SiblingOperations, getSiblings };
@@ -1,14 +1,15 @@
1
1
  import { Linter, Rule, AST } from 'eslint';
2
2
  import * as ESTree from 'estree';
3
3
  import { GraphQLSchema, ASTKindToNode } from 'graphql';
4
- import { JSONSchema } from 'json-schema-to-ts';
5
- import { SiblingOperations } from './siblings.mjs';
6
- import { GraphQLESTreeNode } from './estree-converter/types.mjs';
7
4
  import { IGraphQLConfig } from 'graphql-config';
5
+ import { JSONSchema } from 'json-schema-to-ts';
6
+ import { GraphQLESTreeNode } from './estree-converter/types.cjs';
7
+ import { SiblingOperations } from './siblings.cjs';
8
8
  import '@graphql-tools/utils';
9
9
 
10
10
  type Schema = GraphQLSchema | null;
11
11
  type Pointer = string | string[];
12
+
12
13
  interface ParserOptions {
13
14
  graphQLConfig?: IGraphQLConfig;
14
15
  filePath: string;
@@ -72,4 +73,4 @@ type OmitRecursively<T extends object, K extends PropertyKey> = Omit<{
72
73
  }, K>;
73
74
  type ConfigName = 'operations-all' | 'operations-recommended' | 'schema-all' | 'schema-recommended' | 'schema-relay';
74
75
 
75
- export { CategoryType, ConfigName, GraphQLESLintParseResult, GraphQLESLintRule, GraphQLESLintRuleContext, GraphQLESLintRuleListener, OmitRecursively, ParserOptions, ParserServices, Pointer, ReportDescriptor, RuleDocsInfo, Schema, ValueOf };
76
+ export { type CategoryType, type ConfigName, type GraphQLESLintParseResult, type GraphQLESLintRule, type GraphQLESLintRuleContext, type GraphQLESLintRuleListener, GraphQLESTreeNode, type OmitRecursively, type ParserOptions, type ParserServices, type Pointer, type ReportDescriptor, type RuleDocsInfo, type Schema, type ValueOf };
@@ -1,12 +1,12 @@
1
1
  import { AST } from 'eslint';
2
2
  import { Position } from 'estree';
3
3
  import { GraphQLSchema, ASTNode, Kind } from 'graphql';
4
- import { SiblingOperations } from './siblings.mjs';
5
- import { GraphQLESLintRuleContext } from './types.mjs';
6
- import { GraphQLESTreeNode } from './estree-converter/types.mjs';
4
+ import { GraphQLESTreeNode } from './estree-converter/types.cjs';
5
+ import { SiblingOperations } from './siblings.cjs';
6
+ import { GraphQLESLintRuleContext } from './types.cjs';
7
7
  import '@graphql-tools/utils';
8
- import 'json-schema-to-ts';
9
8
  import 'graphql-config';
9
+ import 'json-schema-to-ts';
10
10
 
11
11
  declare function requireSiblingsOperations(ruleId: string, context: GraphQLESLintRuleContext): SiblingOperations | never;
12
12
  declare function requireGraphQLSchemaFromContext(ruleId: string, context: GraphQLESLintRuleContext): GraphQLSchema | never;
@@ -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, 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, normalizePath, pascalCase, requireGraphQLSchemaFromContext, requireSiblingsOperations, truthy };
package/cjs/utils.js CHANGED
@@ -43,7 +43,7 @@ __export(utils_exports, {
43
43
  truthy: () => truthy
44
44
  });
45
45
  module.exports = __toCommonJS(utils_exports);
46
- var import_graphql = require("graphql"), import_lodash = __toESM(require("lodash.lowercase"));
46
+ var import_graphql = require("graphql"), import_lodash = __toESM(require("lodash.lowercase"), 1);
47
47
  function requireSiblingsOperations(ruleId, context) {
48
48
  const { siblingOperations } = context.sourceCode.parserServices;
49
49
  if (!siblingOperations.available)
@@ -1,4 +1,4 @@
1
- declare class ModuleCache<T, K = any> {
1
+ declare class ModuleCache<K, T> {
2
2
  map: Map<K, {
3
3
  lastSeen: [number, number];
4
4
  result: T;
package/esm/cache.js CHANGED
@@ -1,4 +1,4 @@
1
- import "./chunk-U3TKCM4X.js";
1
+ import "./chunk-UIAXBAMD.js";
2
2
  import debugFactory from "debug";
3
3
  const log = debugFactory("graphql-eslint:ModuleCache");
4
4
  class ModuleCache {
@@ -0,0 +1,9 @@
1
+ declare const configs: {
2
+ 'schema-recommended': any;
3
+ 'schema-all': any;
4
+ 'schema-relay': any;
5
+ 'operations-recommended': any;
6
+ 'operations-all': any;
7
+ };
8
+
9
+ export { configs };
@@ -1,4 +1,4 @@
1
- import "../chunk-U3TKCM4X.js";
1
+ import "../chunk-UIAXBAMD.js";
2
2
  import operationsAllConfig from "./operations-all.js";
3
3
  import operationsRecommendedConfig from "./operations-recommended.js";
4
4
  import schemaAllConfig from "./schema-all.js";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  __commonJS
3
- } from "../chunk-U3TKCM4X.js";
3
+ } from "../chunk-UIAXBAMD.js";
4
4
  var require_operations_all = __commonJS({
5
5
  "src/configs/operations-all.ts"(exports, module) {
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  __commonJS
3
- } from "../chunk-U3TKCM4X.js";
3
+ } from "../chunk-UIAXBAMD.js";
4
4
  var require_operations_recommended = __commonJS({
5
5
  "src/configs/operations-recommended.ts"(exports, module) {
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  __commonJS
3
- } from "../chunk-U3TKCM4X.js";
3
+ } from "../chunk-UIAXBAMD.js";
4
4
  var require_schema_all = __commonJS({
5
5
  "src/configs/schema-all.ts"(exports, module) {
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  __commonJS
3
- } from "../chunk-U3TKCM4X.js";
3
+ } from "../chunk-UIAXBAMD.js";
4
4
  var require_schema_recommended = __commonJS({
5
5
  "src/configs/schema-recommended.ts"(exports, module) {
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  __commonJS
3
- } from "../chunk-U3TKCM4X.js";
3
+ } from "../chunk-UIAXBAMD.js";
4
4
  var require_schema_relay = __commonJS({
5
5
  "src/configs/schema-relay.ts"(exports, module) {
6
6
  module.exports = {
package/esm/documents.js CHANGED
@@ -1,4 +1,4 @@
1
- import "./chunk-U3TKCM4X.js";
1
+ import "./chunk-UIAXBAMD.js";
2
2
  import { resolve } from "node:path";
3
3
  import debugFactory from "debug";
4
4
  import fg from "fast-glob";
@@ -1,4 +1,4 @@
1
- import "../chunk-U3TKCM4X.js";
1
+ import "../chunk-UIAXBAMD.js";
2
2
  import {
3
3
  Kind,
4
4
  TypeInfo,
@@ -4,5 +4,5 @@ export { convertLocation, convertToken, extractComments, extractTokens, getBaseT
4
4
  import 'graphql';
5
5
  import 'eslint';
6
6
  import 'estree';
7
- import 'graphql/jsutils/Maybe';
8
- import 'graphql/jsutils/ObjMap';
7
+ import 'graphql/jsutils/Maybe.js';
8
+ import 'graphql/jsutils/ObjMap.js';
@@ -39,4 +39,4 @@ type GraphQLESTreeNode<T, W extends boolean = false> = T extends ASTNode ? {
39
39
  parent: null;
40
40
  } : T;
41
41
 
42
- export { GraphQLESTreeNode, TypeInformation };
42
+ export type { GraphQLESTreeNode, TypeInformation };
@@ -1,11 +1,11 @@
1
- import * as graphql_jsutils_Maybe from 'graphql/jsutils/Maybe';
2
- import * as graphql_jsutils_ObjMap from 'graphql/jsutils/ObjMap';
1
+ import * as graphql_jsutils_Maybe_js from 'graphql/jsutils/Maybe.js';
2
+ import * as graphql_jsutils_ObjMap_js from 'graphql/jsutils/ObjMap.js';
3
3
  import * as graphql from 'graphql';
4
4
  import { GraphQLOutputType, GraphQLNamedType, TokenKind, Token, Location } from 'graphql';
5
5
  import { AST } from 'eslint';
6
6
  import { Comment, SourceLocation } from 'estree';
7
7
 
8
- declare const valueFromNode: (valueNode: graphql.ValueNode, variables?: graphql_jsutils_Maybe.Maybe<graphql_jsutils_ObjMap.ObjMap<unknown>>) => any;
8
+ declare const valueFromNode: (valueNode: graphql.ValueNode, variables?: graphql_jsutils_Maybe_js.Maybe<graphql_jsutils_ObjMap_js.ObjMap<unknown>>) => any;
9
9
  declare function getBaseType(type: GraphQLOutputType): GraphQLNamedType;
10
10
  declare function convertToken<T extends TokenKind | 'Block' | 'Line'>(token: Token, type: T): Omit<AST.Token, 'type'> & {
11
11
  type: T;
@@ -1,4 +1,4 @@
1
- import "../chunk-U3TKCM4X.js";
1
+ import "../chunk-UIAXBAMD.js";
2
2
  import {
3
3
  isListType,
4
4
  isNonNullType,
@@ -0,0 +1,75 @@
1
+ import { parseForESLint } from './parser.js';
2
+ import './types.js';
3
+ import 'eslint';
4
+ import 'estree';
5
+ import 'graphql';
6
+ import 'graphql-config';
7
+ import 'json-schema-to-ts';
8
+ import './estree-converter/types.js';
9
+ import './siblings.js';
10
+ import '@graphql-tools/utils';
11
+
12
+ declare const flatConfigs: {
13
+ 'operations-all': {
14
+ languageOptions: {
15
+ parser: {
16
+ parseForESLint: typeof parseForESLint;
17
+ meta: {
18
+ name: string;
19
+ version: string;
20
+ };
21
+ };
22
+ };
23
+ rules: any;
24
+ };
25
+ 'operations-recommended': {
26
+ languageOptions: {
27
+ parser: {
28
+ parseForESLint: typeof parseForESLint;
29
+ meta: {
30
+ name: string;
31
+ version: string;
32
+ };
33
+ };
34
+ };
35
+ rules: any;
36
+ };
37
+ 'schema-relay': {
38
+ languageOptions: {
39
+ parser: {
40
+ parseForESLint: typeof parseForESLint;
41
+ meta: {
42
+ name: string;
43
+ version: string;
44
+ };
45
+ };
46
+ };
47
+ rules: any;
48
+ };
49
+ 'schema-all': {
50
+ languageOptions: {
51
+ parser: {
52
+ parseForESLint: typeof parseForESLint;
53
+ meta: {
54
+ name: string;
55
+ version: string;
56
+ };
57
+ };
58
+ };
59
+ rules: any;
60
+ };
61
+ 'schema-recommended': {
62
+ languageOptions: {
63
+ parser: {
64
+ parseForESLint: typeof parseForESLint;
65
+ meta: {
66
+ name: string;
67
+ version: string;
68
+ };
69
+ };
70
+ };
71
+ rules: any;
72
+ };
73
+ };
74
+
75
+ export { flatConfigs };
@@ -1,9 +1,7 @@
1
- import "./chunk-U3TKCM4X.js";
1
+ import "./chunk-UIAXBAMD.js";
2
2
  import { configs } from "./configs/index.js";
3
- import { parseForESLint } from "./parser.js";
4
- const languageOptions = {
5
- parser: { parseForESLint }
6
- }, flatConfigs = {
3
+ import { parser } from "./parser.js";
4
+ const languageOptions = { parser }, flatConfigs = {
7
5
  "operations-all": {
8
6
  languageOptions,
9
7
  rules: {
@@ -1,8 +1,8 @@
1
- import "./chunk-U3TKCM4X.js";
1
+ import "./chunk-UIAXBAMD.js";
2
2
  import path from "node:path";
3
- import { CodeFileLoader } from "@graphql-tools/code-file-loader";
4
3
  import debugFactory from "debug";
5
4
  import { GraphQLConfig, loadConfigSync } from "graphql-config";
5
+ import { CodeFileLoader } from "@graphql-tools/code-file-loader";
6
6
  const debug = debugFactory("graphql-eslint:graphql-config");
7
7
  let graphQLConfig;
8
8
  function loadOnDiskGraphQLConfig(filePath) {
@@ -17,7 +17,7 @@ function loadGraphQLConfig({
17
17
  graphQLConfig: config,
18
18
  filePath
19
19
  }) {
20
- if (graphQLConfig)
20
+ if (process.env.NODE_ENV !== "test" && graphQLConfig)
21
21
  return graphQLConfig;
22
22
  debug("parserOptions.graphQLConfig: %o", config);
23
23
  const onDiskConfig = !config && loadOnDiskGraphQLConfig(filePath);
@@ -1,23 +1,26 @@
1
1
  import * as eslint from 'eslint';
2
2
  import { Block } from './processor.js';
3
- export { parseForESLint } from './parser.js';
3
+ export { parseForESLint, parser } from './parser.js';
4
4
  export { rules } from './rules/index.js';
5
5
  export { CategoryType, ConfigName, GraphQLESLintParseResult, GraphQLESLintRule, GraphQLESLintRuleContext, GraphQLESLintRuleListener, OmitRecursively, ParserOptions, ParserServices, Pointer, ReportDescriptor, RuleDocsInfo, Schema, ValueOf } from './types.js';
6
6
  export { requireGraphQLSchemaFromContext, requireSiblingsOperations } from './utils.js';
7
7
  export { configs } from './configs/index.js';
8
8
  export { flatConfigs } from './flat-configs.js';
9
+ export { GraphQLESTreeNode } from './estree-converter/types.js';
9
10
  import './rules/require-description.js';
10
11
  import 'graphql';
11
- import 'graphql/language/ast.js';
12
12
  import 'estree';
13
+ import 'graphql-config';
13
14
  import 'json-schema-to-ts';
14
15
  import './siblings.js';
15
16
  import '@graphql-tools/utils';
16
- import './estree-converter/types.js';
17
- import 'graphql-config';
18
17
 
19
18
  declare const processors: {
20
19
  graphql: {
20
+ meta: {
21
+ name: string;
22
+ version: string;
23
+ };
21
24
  supportsAutofix: true;
22
25
  preprocess(code: string, filePath: string): (string | Block)[];
23
26
  postprocess(messages: eslint.Linter.LintMessage[][], filePath: string): eslint.Linter.LintMessage[];
package/esm/index.js CHANGED
@@ -1,6 +1,6 @@
1
- import "./chunk-U3TKCM4X.js";
1
+ import "./chunk-UIAXBAMD.js";
2
2
  import { processor } from "./processor.js";
3
- import { parseForESLint } from "./parser.js";
3
+ import { parser, parseForESLint } from "./parser.js";
4
4
  import { rules } from "./rules/index.js";
5
5
  export * from "./types.js";
6
6
  import { requireGraphQLSchemaFromContext, requireSiblingsOperations } from "./utils.js";
@@ -11,6 +11,7 @@ export {
11
11
  configs,
12
12
  flatConfigs,
13
13
  parseForESLint,
14
+ parser,
14
15
  processors,
15
16
  requireGraphQLSchemaFromContext,
16
17
  requireSiblingsOperations,
package/esm/meta.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ declare const name: string;
2
+ declare const version: string;
3
+
4
+ export { name, version };
package/esm/meta.js ADDED
@@ -0,0 +1,7 @@
1
+ import "./chunk-UIAXBAMD.js";
2
+ import packageJson from "../package.json" assert { type: "json" };
3
+ const { name, version } = packageJson;
4
+ export {
5
+ name,
6
+ version
7
+ };
@@ -2,12 +2,19 @@ import { ParserOptions, GraphQLESLintParseResult } from './types.js';
2
2
  import 'eslint';
3
3
  import 'estree';
4
4
  import 'graphql';
5
+ import 'graphql-config';
5
6
  import 'json-schema-to-ts';
7
+ import './estree-converter/types.js';
6
8
  import './siblings.js';
7
9
  import '@graphql-tools/utils';
8
- import './estree-converter/types.js';
9
- import 'graphql-config';
10
10
 
11
11
  declare function parseForESLint(code: string, options: ParserOptions): GraphQLESLintParseResult;
12
+ declare const parser: {
13
+ parseForESLint: typeof parseForESLint;
14
+ meta: {
15
+ name: string;
16
+ version: string;
17
+ };
18
+ };
12
19
 
13
- export { parseForESLint };
20
+ export { parseForESLint, parser };
package/esm/parser.js CHANGED
@@ -1,13 +1,14 @@
1
- import "./chunk-U3TKCM4X.js";
2
- import { parseGraphQLSDL } from "@graphql-tools/utils";
1
+ import "./chunk-UIAXBAMD.js";
3
2
  import debugFactory from "debug";
4
3
  import { GraphQLError } from "graphql";
4
+ import { parseGraphQLSDL } from "@graphql-tools/utils";
5
+ import { getDocuments } from "./documents.js";
5
6
  import { convertToESTree, extractComments, extractTokens } from "./estree-converter/index.js";
6
7
  import { loadGraphQLConfig } from "./graphql-config.js";
8
+ import { version } from "./meta.js";
7
9
  import { getSchema } from "./schema.js";
8
10
  import { getSiblings } from "./siblings.js";
9
11
  import { CWD, VIRTUAL_DOCUMENT_REGEX } from "./utils.js";
10
- import { getDocuments } from "./documents.js";
11
12
  const debug = debugFactory("graphql-eslint:parser");
12
13
  debug("cwd %o", CWD);
13
14
  const LEGACY_PARSER_OPTIONS_KEYS = [
@@ -71,6 +72,14 @@ function parseForESLint(code, options) {
71
72
  throw error;
72
73
  }
73
74
  }
75
+ const parser = {
76
+ parseForESLint,
77
+ meta: {
78
+ name: "@graphql-eslint/parser",
79
+ version
80
+ }
81
+ };
74
82
  export {
75
- parseForESLint
83
+ parseForESLint,
84
+ parser
76
85
  };
@@ -5,9 +5,13 @@ type Block = Linter.ProcessorFile & {
5
5
  offset: number;
6
6
  };
7
7
  declare const processor: {
8
+ meta: {
9
+ name: string;
10
+ version: string;
11
+ };
8
12
  supportsAutofix: true;
9
13
  preprocess(code: string, filePath: string): (string | Block)[];
10
14
  postprocess(messages: Linter.LintMessage[][], filePath: string): Linter.LintMessage[];
11
15
  };
12
16
 
13
- export { Block, processor };
17
+ export { type Block, processor };
package/esm/processor.js CHANGED
@@ -1,14 +1,19 @@
1
- import "./chunk-U3TKCM4X.js";
1
+ import "./chunk-UIAXBAMD.js";
2
2
  import { relative } from "node:path";
3
3
  import {
4
4
  gqlPluckFromCodeStringSync
5
5
  } from "@graphql-tools/graphql-tag-pluck";
6
6
  import { asArray } from "@graphql-tools/utils";
7
7
  import { loadOnDiskGraphQLConfig } from "./graphql-config.js";
8
+ import { version } from "./meta.js";
8
9
  import { CWD, REPORT_ON_FIRST_CHARACTER, truthy } from "./utils.js";
9
10
  const blocksMap = /* @__PURE__ */ new Map();
10
11
  let onDiskConfig, onDiskConfigLoaded = !1;
11
12
  const RELEVANT_KEYWORDS = ["gql", "graphql", "GraphQL"], processor = {
13
+ meta: {
14
+ name: "@graphql-eslint/processor",
15
+ version
16
+ },
12
17
  supportsAutofix: !0,
13
18
  preprocess(code, filePath) {
14
19
  onDiskConfigLoaded || (onDiskConfig = loadOnDiskGraphQLConfig(filePath), onDiskConfigLoaded = !0);
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
+ import 'graphql-config';
7
+ import '../estree-converter/types.js';
6
8
  import '../siblings.js';
7
9
  import '@graphql-tools/utils';
8
- import '../estree-converter/types.js';
9
- import 'graphql-config';
10
10
 
11
11
  declare const schema: {
12
12
  readonly type: "array";
@@ -71,4 +71,4 @@ declare const schema: {
71
71
  type RuleOptions = FromSchema<typeof schema>;
72
72
  declare const rule: GraphQLESLintRule<RuleOptions>;
73
73
 
74
- export { RuleOptions, rule };
74
+ export { type RuleOptions, rule };
@@ -1,4 +1,4 @@
1
- import "../chunk-U3TKCM4X.js";
1
+ import "../chunk-UIAXBAMD.js";
2
2
  import {
3
3
  Kind
4
4
  } from "graphql";
@@ -3,10 +3,10 @@ import { GraphQLESLintRule } from '../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
+ import 'graphql-config';
7
+ import '../estree-converter/types.js';
6
8
  import '../siblings.js';
7
9
  import '@graphql-tools/utils';
8
- import '../estree-converter/types.js';
9
- import 'graphql-config';
10
10
 
11
11
  declare const schema: {
12
12
  readonly type: "array";
@@ -26,4 +26,4 @@ declare const schema: {
26
26
  type RuleOptions = FromSchema<typeof schema>;
27
27
  declare const rule: GraphQLESLintRule<RuleOptions>;
28
28
 
29
- export { RuleOptions, rule };
29
+ export { type RuleOptions, rule };
@@ -1,4 +1,4 @@
1
- import "../chunk-U3TKCM4X.js";
1
+ import "../chunk-UIAXBAMD.js";
2
2
  import { getNodeName } from "../utils.js";
3
3
  const schema = {
4
4
  type: "array",
@@ -1,4 +1,4 @@
1
- import "../chunk-U3TKCM4X.js";
1
+ import "../chunk-UIAXBAMD.js";
2
2
  import {
3
3
  Kind,
4
4
  validate,