@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.
- package/README.md +0 -2
- package/{esm/cache.d.mts → cjs/cache.d.cts} +1 -1
- package/cjs/cache.js +1 -1
- package/cjs/configs/index.d.cts +9 -0
- package/cjs/configs/index.js +1 -1
- package/cjs/documents.js +1 -1
- package/{esm/estree-converter/converter.d.mts → cjs/estree-converter/converter.d.cts} +1 -1
- package/cjs/estree-converter/index.d.cts +8 -0
- package/{esm/estree-converter/types.d.mts → cjs/estree-converter/types.d.cts} +1 -1
- package/{esm/estree-converter/utils.d.mts → cjs/estree-converter/utils.d.cts} +3 -3
- package/cjs/flat-configs.d.cts +75 -0
- package/cjs/flat-configs.js +1 -3
- package/{esm/graphql-config.d.mts → cjs/graphql-config.d.cts} +3 -3
- package/cjs/graphql-config.js +2 -2
- package/{esm/index.d.mts → cjs/index.d.cts} +15 -12
- package/cjs/index.js +2 -0
- package/cjs/meta.d.cts +4 -0
- package/cjs/meta.js +36 -0
- package/cjs/package.json +1 -0
- package/{esm/parser.d.mts → cjs/parser.d.cts} +12 -5
- package/cjs/parser.js +13 -4
- package/{esm/processor.d.mts → cjs/processor.d.cts} +5 -1
- package/cjs/processor.js +5 -1
- package/{esm/rules/alphabetize.d.mts → cjs/rules/alphabetize.d.cts} +5 -5
- package/cjs/rules/alphabetize.js +1 -1
- package/{esm/rules/description-style.d.mts → cjs/rules/description-style.d.cts} +5 -5
- package/{esm/rules/graphql-js-validation.d.mts → cjs/rules/graphql-js-validation.d.cts} +4 -4
- package/{esm/rules/index.d.mts → cjs/rules/index.d.cts} +8 -9
- package/cjs/rules/index.js +1 -1
- package/{esm/rules/input-name.d.mts → cjs/rules/input-name.d.cts} +5 -5
- package/{esm/rules/lone-executable-definition.d.mts → cjs/rules/lone-executable-definition.d.cts} +5 -5
- package/{esm/rules/match-document-filename.d.mts → cjs/rules/match-document-filename.d.cts} +6 -6
- package/cjs/rules/match-document-filename.js +2 -2
- package/{esm/rules/naming-convention.d.mts → cjs/rules/naming-convention.d.cts} +5 -5
- package/cjs/rules/no-anonymous-operations.d.cts +13 -0
- package/{esm/rules/no-deprecated.d.mts → cjs/rules/no-deprecated.d.cts} +4 -4
- package/cjs/rules/no-duplicate-fields.d.cts +13 -0
- package/{esm/rules/no-hashtag-description.d.mts → cjs/rules/no-hashtag-description.d.cts} +4 -4
- package/cjs/rules/no-one-place-fragments.d.cts +13 -0
- package/{esm/rules/no-root-type.d.mts → cjs/rules/no-root-type.d.cts} +5 -5
- package/cjs/rules/no-scalar-result-type-on-mutation.d.cts +13 -0
- package/cjs/rules/no-typename-prefix.d.cts +13 -0
- package/cjs/rules/no-unreachable-types.d.cts +13 -0
- package/cjs/rules/no-unreachable-types.js +7 -9
- package/cjs/rules/no-unused-fields.d.cts +13 -0
- package/cjs/rules/no-unused-fields.js +6 -6
- package/{esm/rules/relay-arguments.d.mts → cjs/rules/relay-arguments.d.cts} +5 -5
- package/{esm/rules/relay-connection-types.d.mts → cjs/rules/relay-connection-types.d.cts} +4 -4
- package/{esm/rules/relay-edge-types.d.mts → cjs/rules/relay-edge-types.d.cts} +5 -5
- package/cjs/rules/relay-edge-types.js +2 -2
- package/cjs/rules/relay-page-info.d.cts +13 -0
- package/cjs/rules/relay-page-info.js +1 -1
- package/{esm/rules/require-deprecation-date.d.mts → cjs/rules/require-deprecation-date.d.cts} +5 -5
- package/cjs/rules/require-deprecation-reason.d.cts +13 -0
- package/{esm/rules/require-description.d.mts → cjs/rules/require-description.d.cts} +5 -5
- package/cjs/rules/require-description.js +1 -1
- package/cjs/rules/require-field-of-type-query-in-mutation-result.d.cts +13 -0
- package/cjs/rules/require-import-fragment.d.cts +13 -0
- package/cjs/rules/require-import-fragment.js +5 -9
- package/cjs/rules/require-nullable-fields-with-oneof.d.cts +13 -0
- package/cjs/rules/require-nullable-result-in-root.d.cts +13 -0
- package/{esm/rules/require-selections.d.mts → cjs/rules/require-selections.d.cts} +5 -5
- package/cjs/rules/require-selections.js +2 -1
- package/cjs/rules/require-type-pattern-with-oneof.d.cts +13 -0
- package/{esm/rules/selection-set-depth.d.mts → cjs/rules/selection-set-depth.d.cts} +5 -5
- package/cjs/rules/selection-set-depth.js +2 -2
- package/{esm/rules/strict-id-in-types.d.mts → cjs/rules/strict-id-in-types.d.cts} +5 -5
- package/cjs/rules/unique-enum-value-names.d.cts +13 -0
- package/{esm/rules/unique-fragment-name.d.mts → cjs/rules/unique-fragment-name.d.cts} +4 -4
- package/cjs/rules/unique-operation-name.d.cts +13 -0
- package/{esm/schema.d.mts → cjs/schema.d.cts} +3 -3
- package/cjs/schema.js +1 -1
- package/{esm/siblings.d.mts → cjs/siblings.d.cts} +2 -2
- package/{esm/types.d.mts → cjs/types.d.cts} +5 -4
- package/{esm/utils.d.mts → cjs/utils.d.cts} +5 -5
- package/cjs/utils.js +1 -1
- package/{cjs → esm}/cache.d.ts +1 -1
- package/esm/cache.js +1 -1
- package/esm/configs/index.d.ts +9 -0
- package/esm/configs/index.js +1 -1
- package/esm/configs/operations-all.js +1 -1
- package/esm/configs/operations-recommended.js +1 -1
- package/esm/configs/schema-all.js +1 -1
- package/esm/configs/schema-recommended.js +1 -1
- package/esm/configs/schema-relay.js +1 -1
- package/esm/documents.js +1 -1
- package/esm/estree-converter/converter.js +1 -1
- package/{cjs → esm}/estree-converter/index.d.ts +2 -2
- package/{cjs → esm}/estree-converter/types.d.ts +1 -1
- package/{cjs → esm}/estree-converter/utils.d.ts +3 -3
- package/esm/estree-converter/utils.js +1 -1
- package/esm/flat-configs.d.ts +75 -0
- package/esm/flat-configs.js +3 -5
- package/esm/graphql-config.js +3 -3
- package/{cjs → esm}/index.d.ts +7 -4
- package/esm/index.js +3 -2
- package/esm/meta.d.ts +4 -0
- package/esm/meta.js +7 -0
- package/{cjs → esm}/parser.d.ts +10 -3
- package/esm/parser.js +13 -4
- package/{cjs → esm}/processor.d.ts +5 -1
- package/esm/processor.js +6 -1
- package/{cjs → esm}/rules/alphabetize.d.ts +3 -3
- package/esm/rules/alphabetize.js +1 -1
- package/{cjs → esm}/rules/description-style.d.ts +3 -3
- package/esm/rules/description-style.js +1 -1
- package/esm/rules/graphql-js-validation.js +1 -1
- package/{cjs → esm}/rules/index.d.ts +4 -5
- package/esm/rules/index.js +2 -2
- package/{cjs → esm}/rules/input-name.d.ts +3 -3
- package/esm/rules/input-name.js +1 -1
- package/{cjs → esm}/rules/lone-executable-definition.d.ts +3 -3
- package/esm/rules/lone-executable-definition.js +1 -1
- package/{cjs → esm}/rules/match-document-filename.d.ts +3 -3
- package/esm/rules/match-document-filename.js +3 -3
- package/{cjs → esm}/rules/naming-convention.d.ts +3 -3
- package/esm/rules/naming-convention.js +1 -1
- package/esm/rules/no-anonymous-operations.js +1 -1
- package/esm/rules/no-deprecated.js +1 -1
- package/esm/rules/no-duplicate-fields.js +1 -1
- package/esm/rules/no-hashtag-description.js +1 -1
- package/esm/rules/no-one-place-fragments.js +1 -1
- package/{cjs → esm}/rules/no-root-type.d.ts +3 -3
- package/esm/rules/no-root-type.js +1 -1
- package/esm/rules/no-scalar-result-type-on-mutation.js +1 -1
- package/esm/rules/no-typename-prefix.js +1 -1
- package/esm/rules/no-unreachable-types.js +8 -9
- package/esm/rules/no-unused-fields.js +7 -6
- package/{cjs → esm}/rules/relay-arguments.d.ts +3 -3
- package/esm/rules/relay-arguments.js +1 -1
- package/esm/rules/relay-connection-types.js +1 -1
- package/{cjs → esm}/rules/relay-edge-types.d.ts +3 -3
- package/esm/rules/relay-edge-types.js +3 -3
- package/esm/rules/relay-page-info.js +2 -2
- package/{cjs → esm}/rules/require-deprecation-date.d.ts +3 -3
- package/esm/rules/require-deprecation-date.js +1 -1
- package/esm/rules/require-deprecation-reason.js +1 -1
- package/{cjs → esm}/rules/require-description.d.ts +3 -3
- package/esm/rules/require-description.js +2 -2
- package/esm/rules/require-field-of-type-query-in-mutation-result.js +1 -1
- package/esm/rules/require-import-fragment.js +5 -9
- package/esm/rules/require-nullable-fields-with-oneof.js +1 -1
- package/esm/rules/require-nullable-result-in-root.js +1 -1
- package/{cjs → esm}/rules/require-selections.d.ts +3 -3
- package/esm/rules/require-selections.js +3 -2
- package/esm/rules/require-type-pattern-with-oneof.js +1 -1
- package/{cjs → esm}/rules/selection-set-depth.d.ts +3 -3
- package/esm/rules/selection-set-depth.js +2 -2
- package/{cjs → esm}/rules/strict-id-in-types.d.ts +3 -3
- package/esm/rules/strict-id-in-types.js +1 -1
- package/esm/rules/unique-enum-value-names.js +1 -1
- package/esm/rules/unique-fragment-name.js +1 -1
- package/esm/rules/unique-operation-name.js +1 -1
- package/esm/schema.js +1 -1
- package/{cjs → esm}/siblings.d.ts +2 -2
- package/esm/siblings.js +1 -1
- package/{cjs → esm}/types.d.ts +4 -3
- package/{cjs → esm}/utils.d.ts +3 -3
- package/esm/utils.js +1 -1
- package/{index.browser.mjs → index.browser.js} +885 -785
- package/package.json +9 -8
- package/cjs/configs/index.d.ts +0 -174
- package/cjs/flat-configs.d.ts +0 -307
- package/esm/configs/index.d.mts +0 -174
- package/esm/estree-converter/index.d.mts +0 -8
- package/esm/flat-configs.d.mts +0 -307
- package/esm/package.json +0 -1
- package/esm/rules/no-anonymous-operations.d.mts +0 -13
- package/esm/rules/no-duplicate-fields.d.mts +0 -13
- package/esm/rules/no-one-place-fragments.d.mts +0 -13
- package/esm/rules/no-scalar-result-type-on-mutation.d.mts +0 -13
- package/esm/rules/no-typename-prefix.d.mts +0 -13
- package/esm/rules/no-unreachable-types.d.mts +0 -13
- package/esm/rules/no-unused-fields.d.mts +0 -13
- package/esm/rules/relay-page-info.d.mts +0 -13
- package/esm/rules/require-deprecation-reason.d.mts +0 -13
- package/esm/rules/require-field-of-type-query-in-mutation-result.d.mts +0 -13
- package/esm/rules/require-import-fragment.d.mts +0 -13
- package/esm/rules/require-nullable-fields-with-oneof.d.mts +0 -13
- package/esm/rules/require-nullable-result-in-root.d.mts +0 -13
- package/esm/rules/require-type-pattern-with-oneof.d.mts +0 -13
- package/esm/rules/unique-enum-value-names.d.mts +0 -13
- package/esm/rules/unique-operation-name.d.mts +0 -13
- package/cjs/configs/{operations-all.d.ts → operations-all.d.cts} +0 -0
- package/cjs/configs/{operations-recommended.d.ts → operations-recommended.d.cts} +0 -0
- package/cjs/configs/{schema-all.d.ts → schema-all.d.cts} +0 -0
- package/cjs/configs/{schema-recommended.d.ts → schema-recommended.d.cts} +0 -0
- package/cjs/configs/{schema-relay.d.ts → schema-relay.d.cts} +0 -0
- package/{esm/documents.d.mts → cjs/documents.d.cts} +1 -1
- package/esm/{chunk-U3TKCM4X.js → chunk-UIAXBAMD.js} +0 -0
- package/esm/configs/{operations-all.d.mts → operations-all.d.ts} +0 -0
- package/esm/configs/{operations-recommended.d.mts → operations-recommended.d.ts} +0 -0
- package/esm/configs/{schema-all.d.mts → schema-all.d.ts} +0 -0
- package/esm/configs/{schema-recommended.d.mts → schema-recommended.d.ts} +0 -0
- package/esm/configs/{schema-relay.d.mts → schema-relay.d.ts} +0 -0
- package/{cjs → esm}/documents.d.ts +1 -1
- package/{cjs → esm}/estree-converter/converter.d.ts +0 -0
- package/{cjs → esm}/graphql-config.d.ts +1 -1
- package/{cjs → esm}/rules/graphql-js-validation.d.ts +2 -2
- package/{cjs → esm}/rules/no-anonymous-operations.d.ts +2 -2
- package/{cjs → esm}/rules/no-deprecated.d.ts +2 -2
- package/{cjs → esm}/rules/no-duplicate-fields.d.ts +2 -2
- package/{cjs → esm}/rules/no-hashtag-description.d.ts +2 -2
- package/{cjs → esm}/rules/no-one-place-fragments.d.ts +2 -2
- package/{cjs → esm}/rules/no-scalar-result-type-on-mutation.d.ts +2 -2
- package/{cjs → esm}/rules/no-typename-prefix.d.ts +2 -2
- package/{cjs → esm}/rules/no-unreachable-types.d.ts +2 -2
- package/{cjs → esm}/rules/no-unused-fields.d.ts +2 -2
- package/{cjs → esm}/rules/relay-connection-types.d.ts +2 -2
- package/{cjs → esm}/rules/relay-page-info.d.ts +2 -2
- package/{cjs → esm}/rules/require-deprecation-reason.d.ts +2 -2
- package/{cjs → esm}/rules/require-field-of-type-query-in-mutation-result.d.ts +2 -2
- package/{cjs → esm}/rules/require-import-fragment.d.ts +2 -2
- package/{cjs → esm}/rules/require-nullable-fields-with-oneof.d.ts +2 -2
- package/{cjs → esm}/rules/require-nullable-result-in-root.d.ts +2 -2
- package/{cjs → esm}/rules/require-type-pattern-with-oneof.d.ts +2 -2
- package/{cjs → esm}/rules/unique-enum-value-names.d.ts +2 -2
- package/{cjs → esm}/rules/unique-fragment-name.d.ts +1 -1
- package/{cjs → esm}/rules/unique-operation-name.d.ts +2 -2
- package/{cjs → esm}/schema.d.ts +1 -1
package/README.md
CHANGED
package/cjs/cache.js
CHANGED
@@ -26,7 +26,7 @@ __export(cache_exports, {
|
|
26
26
|
ModuleCache: () => ModuleCache
|
27
27
|
});
|
28
28
|
module.exports = __toCommonJS(cache_exports);
|
29
|
-
var import_debug = __toESM(require("debug"));
|
29
|
+
var import_debug = __toESM(require("debug"), 1);
|
30
30
|
const log = (0, import_debug.default)("graphql-eslint:ModuleCache");
|
31
31
|
class ModuleCache {
|
32
32
|
map = /* @__PURE__ */ new Map();
|
package/cjs/configs/index.js
CHANGED
@@ -26,7 +26,7 @@ __export(configs_exports, {
|
|
26
26
|
configs: () => configs
|
27
27
|
});
|
28
28
|
module.exports = __toCommonJS(configs_exports);
|
29
|
-
var import_operations_all = __toESM(require("./operations-all.js")), import_operations_recommended = __toESM(require("./operations-recommended.js")), import_schema_all = __toESM(require("./schema-all.js")), import_schema_recommended = __toESM(require("./schema-recommended.js")), import_schema_relay = __toESM(require("./schema-relay.js"));
|
29
|
+
var import_operations_all = __toESM(require("./operations-all.js"), 1), import_operations_recommended = __toESM(require("./operations-recommended.js"), 1), import_schema_all = __toESM(require("./schema-all.js"), 1), import_schema_recommended = __toESM(require("./schema-recommended.js"), 1), import_schema_relay = __toESM(require("./schema-relay.js"), 1);
|
30
30
|
const configs = {
|
31
31
|
"schema-recommended": import_schema_recommended.default,
|
32
32
|
"schema-all": import_schema_all.default,
|
package/cjs/documents.js
CHANGED
@@ -26,7 +26,7 @@ __export(documents_exports, {
|
|
26
26
|
getDocuments: () => getDocuments
|
27
27
|
});
|
28
28
|
module.exports = __toCommonJS(documents_exports);
|
29
|
-
var import_node_path = require("node:path"), import_debug = __toESM(require("debug")), import_fast_glob = __toESM(require("fast-glob")), import_cache = require("./cache.js");
|
29
|
+
var import_node_path = require("node:path"), import_debug = __toESM(require("debug"), 1), import_fast_glob = __toESM(require("fast-glob"), 1), import_cache = require("./cache.js");
|
30
30
|
const debug = (0, import_debug.default)("graphql-eslint:operations"), operationsCache = new import_cache.ModuleCache(), handleVirtualPath = (documents) => {
|
31
31
|
const filepathMap = /* @__PURE__ */ Object.create(null);
|
32
32
|
return documents.map((source) => {
|
@@ -0,0 +1,8 @@
|
|
1
|
+
export { convertToESTree } from './converter.cjs';
|
2
|
+
export { GraphQLESTreeNode, TypeInformation } from './types.cjs';
|
3
|
+
export { convertLocation, convertToken, extractComments, extractTokens, getBaseType, valueFromNode } from './utils.cjs';
|
4
|
+
import 'graphql';
|
5
|
+
import 'eslint';
|
6
|
+
import 'estree';
|
7
|
+
import 'graphql/jsutils/Maybe.js';
|
8
|
+
import 'graphql/jsutils/ObjMap.js';
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import * as
|
2
|
-
import * as
|
1
|
+
import * as graphql_jsutils_Maybe_js from 'graphql/jsutils/Maybe.js';
|
2
|
+
import * as graphql_jsutils_ObjMap_js from 'graphql/jsutils/ObjMap.js';
|
3
3
|
import * as graphql from 'graphql';
|
4
4
|
import { GraphQLOutputType, GraphQLNamedType, TokenKind, Token, Location } from 'graphql';
|
5
5
|
import { AST } from 'eslint';
|
6
6
|
import { Comment, SourceLocation } from 'estree';
|
7
7
|
|
8
|
-
declare const valueFromNode: (valueNode: graphql.ValueNode, variables?:
|
8
|
+
declare const valueFromNode: (valueNode: graphql.ValueNode, variables?: graphql_jsutils_Maybe_js.Maybe<graphql_jsutils_ObjMap_js.ObjMap<unknown>>) => any;
|
9
9
|
declare function getBaseType(type: GraphQLOutputType): GraphQLNamedType;
|
10
10
|
declare function convertToken<T extends TokenKind | 'Block' | 'Line'>(token: Token, type: T): Omit<AST.Token, 'type'> & {
|
11
11
|
type: T;
|
@@ -0,0 +1,75 @@
|
|
1
|
+
import { parseForESLint } from './parser.cjs';
|
2
|
+
import './types.cjs';
|
3
|
+
import 'eslint';
|
4
|
+
import 'estree';
|
5
|
+
import 'graphql';
|
6
|
+
import 'graphql-config';
|
7
|
+
import 'json-schema-to-ts';
|
8
|
+
import './estree-converter/types.cjs';
|
9
|
+
import './siblings.cjs';
|
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 };
|
package/cjs/flat-configs.js
CHANGED
@@ -19,9 +19,7 @@ __export(flat_configs_exports, {
|
|
19
19
|
});
|
20
20
|
module.exports = __toCommonJS(flat_configs_exports);
|
21
21
|
var import_configs = require("./configs/index.js"), import_parser = require("./parser.js");
|
22
|
-
const languageOptions = {
|
23
|
-
parser: { parseForESLint: import_parser.parseForESLint }
|
24
|
-
}, flatConfigs = {
|
22
|
+
const languageOptions = { parser: import_parser.parser }, flatConfigs = {
|
25
23
|
"operations-all": {
|
26
24
|
languageOptions,
|
27
25
|
rules: {
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { GraphQLConfig } from 'graphql-config';
|
2
|
-
import { ParserOptions } from './types.
|
2
|
+
import { ParserOptions } from './types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'json-schema-to-ts';
|
7
|
-
import './
|
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 loadOnDiskGraphQLConfig(filePath: string): GraphQLConfig;
|
12
12
|
declare function loadGraphQLConfig({ graphQLConfig: config, filePath, }: ParserOptions): GraphQLConfig;
|
package/cjs/graphql-config.js
CHANGED
@@ -27,7 +27,7 @@ __export(graphql_config_exports, {
|
|
27
27
|
loadOnDiskGraphQLConfig: () => loadOnDiskGraphQLConfig
|
28
28
|
});
|
29
29
|
module.exports = __toCommonJS(graphql_config_exports);
|
30
|
-
var import_node_path = __toESM(require("node:path")),
|
30
|
+
var import_node_path = __toESM(require("node:path"), 1), import_debug = __toESM(require("debug"), 1), import_graphql_config = require("graphql-config"), import_code_file_loader = require("@graphql-tools/code-file-loader");
|
31
31
|
const debug = (0, import_debug.default)("graphql-eslint:graphql-config");
|
32
32
|
let graphQLConfig;
|
33
33
|
function loadOnDiskGraphQLConfig(filePath) {
|
@@ -42,7 +42,7 @@ function loadGraphQLConfig({
|
|
42
42
|
graphQLConfig: config,
|
43
43
|
filePath
|
44
44
|
}) {
|
45
|
-
if (graphQLConfig)
|
45
|
+
if (process.env.NODE_ENV !== "test" && graphQLConfig)
|
46
46
|
return graphQLConfig;
|
47
47
|
debug("parserOptions.graphQLConfig: %o", config);
|
48
48
|
const onDiskConfig = !config && loadOnDiskGraphQLConfig(filePath);
|
@@ -1,23 +1,26 @@
|
|
1
1
|
import * as eslint from 'eslint';
|
2
|
-
import { Block } from './processor.
|
3
|
-
export { parseForESLint } from './parser.
|
4
|
-
export { rules } from './rules/index.
|
5
|
-
export { CategoryType, ConfigName, GraphQLESLintParseResult, GraphQLESLintRule, GraphQLESLintRuleContext, GraphQLESLintRuleListener, OmitRecursively, ParserOptions, ParserServices, Pointer, ReportDescriptor, RuleDocsInfo, Schema, ValueOf } from './types.
|
6
|
-
export { requireGraphQLSchemaFromContext, requireSiblingsOperations } from './utils.
|
7
|
-
export { configs } from './configs/index.
|
8
|
-
export { flatConfigs } from './flat-configs.
|
9
|
-
|
2
|
+
import { Block } from './processor.cjs';
|
3
|
+
export { parseForESLint, parser } from './parser.cjs';
|
4
|
+
export { rules } from './rules/index.cjs';
|
5
|
+
export { CategoryType, ConfigName, GraphQLESLintParseResult, GraphQLESLintRule, GraphQLESLintRuleContext, GraphQLESLintRuleListener, OmitRecursively, ParserOptions, ParserServices, Pointer, ReportDescriptor, RuleDocsInfo, Schema, ValueOf } from './types.cjs';
|
6
|
+
export { requireGraphQLSchemaFromContext, requireSiblingsOperations } from './utils.cjs';
|
7
|
+
export { configs } from './configs/index.cjs';
|
8
|
+
export { flatConfigs } from './flat-configs.cjs';
|
9
|
+
export { GraphQLESTreeNode } from './estree-converter/types.cjs';
|
10
|
+
import './rules/require-description.cjs';
|
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
|
-
import './siblings.
|
15
|
+
import './siblings.cjs';
|
15
16
|
import '@graphql-tools/utils';
|
16
|
-
import './estree-converter/types.mjs';
|
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/cjs/index.js
CHANGED
@@ -18,6 +18,7 @@ __export(src_exports, {
|
|
18
18
|
configs: () => import_configs.configs,
|
19
19
|
flatConfigs: () => import_flat_configs.flatConfigs,
|
20
20
|
parseForESLint: () => import_parser.parseForESLint,
|
21
|
+
parser: () => import_parser.parser,
|
21
22
|
processors: () => processors,
|
22
23
|
requireGraphQLSchemaFromContext: () => import_utils.requireGraphQLSchemaFromContext,
|
23
24
|
requireSiblingsOperations: () => import_utils.requireSiblingsOperations,
|
@@ -33,6 +34,7 @@ const processors = { graphql: import_processor.processor };
|
|
33
34
|
configs,
|
34
35
|
flatConfigs,
|
35
36
|
parseForESLint,
|
37
|
+
parser,
|
36
38
|
processors,
|
37
39
|
requireGraphQLSchemaFromContext,
|
38
40
|
requireSiblingsOperations,
|
package/cjs/meta.d.cts
ADDED
package/cjs/meta.js
ADDED
@@ -0,0 +1,36 @@
|
|
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 name2 in all)
|
9
|
+
__defProp(target, name2, { get: all[name2], 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 meta_exports = {};
|
25
|
+
__export(meta_exports, {
|
26
|
+
name: () => name,
|
27
|
+
version: () => version
|
28
|
+
});
|
29
|
+
module.exports = __toCommonJS(meta_exports);
|
30
|
+
var import_package = __toESM(require("../package.json"), 1);
|
31
|
+
const { name, version } = import_package.default;
|
32
|
+
// Annotate the CommonJS export names for ESM import in node:
|
33
|
+
0 && (module.exports = {
|
34
|
+
name,
|
35
|
+
version
|
36
|
+
});
|
package/cjs/package.json
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"type": "commonjs"}
|
@@ -1,13 +1,20 @@
|
|
1
|
-
import { ParserOptions, GraphQLESLintParseResult } from './types.
|
1
|
+
import { ParserOptions, GraphQLESLintParseResult } from './types.cjs';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
5
|
+
import 'graphql-config';
|
5
6
|
import 'json-schema-to-ts';
|
6
|
-
import './
|
7
|
+
import './estree-converter/types.cjs';
|
8
|
+
import './siblings.cjs';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import './estree-converter/types.mjs';
|
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/cjs/parser.js
CHANGED
@@ -23,10 +23,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
23
23
|
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
24
24
|
var parser_exports = {};
|
25
25
|
__export(parser_exports, {
|
26
|
-
parseForESLint: () => parseForESLint
|
26
|
+
parseForESLint: () => parseForESLint,
|
27
|
+
parser: () => parser
|
27
28
|
});
|
28
29
|
module.exports = __toCommonJS(parser_exports);
|
29
|
-
var
|
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");
|
30
31
|
const debug = (0, import_debug.default)("graphql-eslint:parser");
|
31
32
|
debug("cwd %o", import_utils2.CWD);
|
32
33
|
const LEGACY_PARSER_OPTIONS_KEYS = [
|
@@ -51,7 +52,7 @@ function parseForESLint(code, options) {
|
|
51
52
|
const { filePath } = options, { document } = (0, import_utils.parseGraphQLSDL)(filePath, code, { noLocation: !1 });
|
52
53
|
let project, schema, documents;
|
53
54
|
{
|
54
|
-
const gqlConfig = (0,
|
55
|
+
const gqlConfig = (0, import_graphql_config2.loadGraphQLConfig)(options), realFilepath = filePath.replace(import_utils2.VIRTUAL_DOCUMENT_REGEX, "");
|
55
56
|
project = gqlConfig.getProjectForFile(realFilepath), documents = (0, import_documents.getDocuments)(project);
|
56
57
|
}
|
57
58
|
try {
|
@@ -90,7 +91,15 @@ function parseForESLint(code, options) {
|
|
90
91
|
throw error;
|
91
92
|
}
|
92
93
|
}
|
94
|
+
const parser = {
|
95
|
+
parseForESLint,
|
96
|
+
meta: {
|
97
|
+
name: "@graphql-eslint/parser",
|
98
|
+
version: import_meta.version
|
99
|
+
}
|
100
|
+
};
|
93
101
|
// Annotate the CommonJS export names for ESM import in node:
|
94
102
|
0 && (module.exports = {
|
95
|
-
parseForESLint
|
103
|
+
parseForESLint,
|
104
|
+
parser
|
96
105
|
});
|
@@ -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/cjs/processor.js
CHANGED
@@ -18,10 +18,14 @@ __export(processor_exports, {
|
|
18
18
|
processor: () => processor
|
19
19
|
});
|
20
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_utils2 = require("./utils.js");
|
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");
|
22
22
|
const blocksMap = /* @__PURE__ */ new Map();
|
23
23
|
let onDiskConfig, onDiskConfigLoaded = !1;
|
24
24
|
const RELEVANT_KEYWORDS = ["gql", "graphql", "GraphQL"], processor = {
|
25
|
+
meta: {
|
26
|
+
name: "@graphql-eslint/processor",
|
27
|
+
version: import_meta.version
|
28
|
+
},
|
25
29
|
supportsAutofix: !0,
|
26
30
|
preprocess(code, filePath) {
|
27
31
|
onDiskConfigLoaded || (onDiskConfig = (0, import_graphql_config2.loadOnDiskGraphQLConfig)(filePath), onDiskConfigLoaded = !0);
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
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";
|
@@ -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 };
|
package/cjs/rules/alphabetize.js
CHANGED
@@ -26,7 +26,7 @@ __export(alphabetize_exports, {
|
|
26
26
|
rule: () => rule
|
27
27
|
});
|
28
28
|
module.exports = __toCommonJS(alphabetize_exports);
|
29
|
-
var import_graphql = require("graphql"), import_lodash = __toESM(require("lodash.lowercase")), import_utils = require("../utils.js");
|
29
|
+
var import_graphql = require("graphql"), import_lodash = __toESM(require("lodash.lowercase"), 1), import_utils = require("../utils.js");
|
30
30
|
const RULE_ID = "alphabetize", fieldsEnum = [
|
31
31
|
import_graphql.Kind.OBJECT_TYPE_DEFINITION,
|
32
32
|
import_graphql.Kind.INTERFACE_TYPE_DEFINITION,
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
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";
|
@@ -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,12 +1,12 @@
|
|
1
|
-
import { GraphQLESLintRule } from '../types.
|
1
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
2
2
|
import 'eslint';
|
3
3
|
import 'estree';
|
4
4
|
import 'graphql';
|
5
|
+
import 'graphql-config';
|
5
6
|
import 'json-schema-to-ts';
|
6
|
-
import '../
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
7
9
|
import '@graphql-tools/utils';
|
8
|
-
import '../estree-converter/types.mjs';
|
9
|
-
import 'graphql-config';
|
10
10
|
|
11
11
|
declare const GRAPHQL_JS_VALIDATIONS: Record<string, GraphQLESLintRule>;
|
12
12
|
|
@@ -1,15 +1,14 @@
|
|
1
|
-
import { RuleOptions } from './require-description.
|
2
|
-
import { CaseStyle } from '../utils.
|
3
|
-
import * as
|
4
|
-
import { GraphQLESLintRule } from '../types.
|
5
|
-
import 'graphql';
|
1
|
+
import { RuleOptions } from './require-description.cjs';
|
2
|
+
import { CaseStyle } from '../utils.cjs';
|
3
|
+
import * as graphql from 'graphql';
|
4
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
6
5
|
import 'eslint';
|
7
6
|
import 'estree';
|
8
|
-
import '../
|
7
|
+
import '../estree-converter/types.cjs';
|
8
|
+
import '../siblings.cjs';
|
9
9
|
import '@graphql-tools/utils';
|
10
|
-
import '../estree-converter/types.mjs';
|
11
|
-
import 'json-schema-to-ts';
|
12
10
|
import 'graphql-config';
|
11
|
+
import 'json-schema-to-ts';
|
13
12
|
|
14
13
|
declare const rules: {
|
15
14
|
alphabetize: GraphQLESLintRule<{
|
@@ -31,7 +30,7 @@ declare const rules: {
|
|
31
30
|
checkMutations?: boolean | undefined;
|
32
31
|
}[]>;
|
33
32
|
'lone-executable-definition': GraphQLESLintRule<{
|
34
|
-
ignore?: (
|
33
|
+
ignore?: (graphql.OperationTypeNode | "fragment")[] | undefined;
|
35
34
|
}[]>;
|
36
35
|
'match-document-filename': GraphQLESLintRule<{
|
37
36
|
fragment?: (CaseStyle | "matchDocumentStyle") | {
|
package/cjs/rules/index.js
CHANGED
@@ -18,7 +18,7 @@ __export(rules_exports, {
|
|
18
18
|
rules: () => rules
|
19
19
|
});
|
20
20
|
module.exports = __toCommonJS(rules_exports);
|
21
|
-
var
|
21
|
+
var import_alphabetize = require("./alphabetize.js"), import_description_style = require("./description-style.js"), import_graphql_js_validation = require("./graphql-js-validation.js"), import_input_name = require("./input-name.js"), import_lone_executable_definition = require("./lone-executable-definition.js"), import_match_document_filename = require("./match-document-filename.js"), import_naming_convention = require("./naming-convention.js"), import_no_anonymous_operations = require("./no-anonymous-operations.js"), import_no_deprecated = require("./no-deprecated.js"), import_no_duplicate_fields = require("./no-duplicate-fields.js"), import_no_hashtag_description = require("./no-hashtag-description.js"), import_no_one_place_fragments = require("./no-one-place-fragments.js"), import_no_root_type = require("./no-root-type.js"), import_no_scalar_result_type_on_mutation = require("./no-scalar-result-type-on-mutation.js"), import_no_typename_prefix = require("./no-typename-prefix.js"), import_no_unreachable_types = require("./no-unreachable-types.js"), import_no_unused_fields = require("./no-unused-fields.js"), import_relay_arguments = require("./relay-arguments.js"), import_relay_connection_types = require("./relay-connection-types.js"), import_relay_edge_types = require("./relay-edge-types.js"), import_relay_page_info = require("./relay-page-info.js"), import_require_deprecation_date = require("./require-deprecation-date.js"), import_require_deprecation_reason = require("./require-deprecation-reason.js"), import_require_description = require("./require-description.js"), import_require_field_of_type_query_in_mutation_result = require("./require-field-of-type-query-in-mutation-result.js"), import_require_import_fragment = require("./require-import-fragment.js"), import_require_nullable_fields_with_oneof = require("./require-nullable-fields-with-oneof.js"), import_require_nullable_result_in_root = require("./require-nullable-result-in-root.js"), import_require_selections = require("./require-selections.js"), import_require_type_pattern_with_oneof = require("./require-type-pattern-with-oneof.js"), import_selection_set_depth = require("./selection-set-depth.js"), import_strict_id_in_types = require("./strict-id-in-types.js"), import_unique_enum_value_names = require("./unique-enum-value-names.js"), import_unique_fragment_name = require("./unique-fragment-name.js"), import_unique_operation_name = require("./unique-operation-name.js");
|
22
22
|
const rules = {
|
23
23
|
...import_graphql_js_validation.GRAPHQL_JS_VALIDATIONS,
|
24
24
|
alphabetize: import_alphabetize.rule,
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
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";
|
@@ -41,4 +41,4 @@ declare const schema: {
|
|
41
41
|
type RuleOptions = FromSchema<typeof schema>;
|
42
42
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
43
43
|
|
44
|
-
export { RuleOptions, rule };
|
44
|
+
export { type RuleOptions, rule };
|
package/{esm/rules/lone-executable-definition.d.mts → cjs/rules/lone-executable-definition.d.cts}
RENAMED
@@ -1,12 +1,12 @@
|
|
1
1
|
import { OperationTypeNode } from 'graphql';
|
2
2
|
import { FromSchema } from 'json-schema-to-ts';
|
3
|
-
import { GraphQLESLintRule } from '../types.
|
3
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
4
4
|
import 'eslint';
|
5
5
|
import 'estree';
|
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";
|
@@ -32,4 +32,4 @@ declare const schema: {
|
|
32
32
|
type RuleOptions = FromSchema<typeof schema>;
|
33
33
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
34
34
|
|
35
|
-
export { RuleOptions, rule };
|
35
|
+
export { type RuleOptions, rule };
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '../types.
|
3
|
-
import { CaseStyle as CaseStyle$1 } from '../utils.
|
2
|
+
import { GraphQLESLintRule } from '../types.cjs';
|
3
|
+
import { CaseStyle as CaseStyle$1 } from '../utils.cjs';
|
4
4
|
import 'eslint';
|
5
5
|
import 'estree';
|
6
6
|
import 'graphql';
|
7
|
-
import '../siblings.mjs';
|
8
|
-
import '@graphql-tools/utils';
|
9
|
-
import '../estree-converter/types.mjs';
|
10
7
|
import 'graphql-config';
|
8
|
+
import '../estree-converter/types.cjs';
|
9
|
+
import '../siblings.cjs';
|
10
|
+
import '@graphql-tools/utils';
|
11
11
|
|
12
12
|
type CaseStyle = CaseStyle$1 | 'matchDocumentStyle';
|
13
13
|
declare const schema: {
|
@@ -78,4 +78,4 @@ declare const schema: {
|
|
78
78
|
type RuleOptions = FromSchema<typeof schema>;
|
79
79
|
declare const rule: GraphQLESLintRule<RuleOptions>;
|
80
80
|
|
81
|
-
export { RuleOptions, rule };
|
81
|
+
export { type RuleOptions, rule };
|
@@ -200,8 +200,8 @@ const MATCH_EXTENSION = "MATCH_EXTENSION", MATCH_STYLE = "MATCH_STYLE", CASE_STY
|
|
200
200
|
create(context) {
|
201
201
|
const options = context.options[0] || {
|
202
202
|
fileExtension: null
|
203
|
-
}, filePath = context.filename;
|
204
|
-
if (
|
203
|
+
}, filePath = context.filename, isVirtualFile = import_utils.VIRTUAL_DOCUMENT_REGEX.test(filePath);
|
204
|
+
if (process.env.NODE_ENV !== "test" && isVirtualFile)
|
205
205
|
return {};
|
206
206
|
const fileExtension = (0, import_node_path.extname)(filePath), filename = (0, import_node_path.basename)(filePath, fileExtension);
|
207
207
|
return {
|