|
2 | 2 | * 🚨 IMPORTANT! Do not manually modify this file. Run: `yarn generate-configs`
|
3 | 3 | */
|
4 | 4 |
|
5 |
| -import { rule as alphabetize } from './alphabetize.js'; |
6 |
| -import { rule as descriptionStyle } from './description-style.js'; |
| 5 | +import { rule as alphabetize } from './alphabetize/index.js'; |
| 6 | +import { rule as descriptionStyle } from './description-style/index.js'; |
7 | 7 | import { GRAPHQL_JS_VALIDATIONS } from './graphql-js-validation.js';
|
8 |
| -import { rule as inputName } from './input-name.js'; |
9 |
| -import { rule as loneExecutableDefinition } from './lone-executable-definition.js'; |
10 |
| -import { rule as matchDocumentFilename } from './match-document-filename.js'; |
11 |
| -import { rule as namingConvention } from './naming-convention.js'; |
12 |
| -import { rule as noAnonymousOperations } from './no-anonymous-operations.js'; |
13 |
| -import { rule as noDeprecated } from './no-deprecated.js'; |
14 |
| -import { rule as noDuplicateFields } from './no-duplicate-fields.js'; |
15 |
| -import { rule as noHashtagDescription } from './no-hashtag-description.js'; |
16 |
| -import { rule as noOnePlaceFragments } from './no-one-place-fragments.js'; |
17 |
| -import { rule as noRootType } from './no-root-type.js'; |
18 |
| -import { rule as noScalarResultTypeOnMutation } from './no-scalar-result-type-on-mutation.js'; |
19 |
| -import { rule as noTypenamePrefix } from './no-typename-prefix.js'; |
20 |
| -import { rule as noUnreachableTypes } from './no-unreachable-types.js'; |
21 |
| -import { rule as noUnusedFields } from './no-unused-fields.js'; |
22 |
| -import { rule as relayArguments } from './relay-arguments.js'; |
23 |
| -import { rule as relayConnectionTypes } from './relay-connection-types.js'; |
24 |
| -import { rule as relayEdgeTypes } from './relay-edge-types.js'; |
25 |
| -import { rule as relayPageInfo } from './relay-page-info.js'; |
26 |
| -import { rule as requireDeprecationDate } from './require-deprecation-date.js'; |
27 |
| -import { rule as requireDeprecationReason } from './require-deprecation-reason.js'; |
28 |
| -import { rule as requireDescription } from './require-description.js'; |
29 |
| -import { rule as requireFieldOfTypeQueryInMutationResult } from './require-field-of-type-query-in-mutation-result.js'; |
30 |
| -import { rule as requireImportFragment } from './require-import-fragment.js'; |
31 |
| -import { rule as requireNullableFieldsWithOneof } from './require-nullable-fields-with-oneof.js'; |
32 |
| -import { rule as requireNullableResultInRoot } from './require-nullable-result-in-root.js'; |
33 |
| -import { rule as requireSelections } from './require-selections.js'; |
34 |
| -import { rule as requireTypePatternWithOneof } from './require-type-pattern-with-oneof.js'; |
35 |
| -import { rule as selectionSetDepth } from './selection-set-depth.js'; |
36 |
| -import { rule as strictIdInTypes } from './strict-id-in-types.js'; |
37 |
| -import { rule as uniqueEnumValueNames } from './unique-enum-value-names.js'; |
38 |
| -import { rule as uniqueFragmentName } from './unique-fragment-name.js'; |
39 |
| -import { rule as uniqueOperationName } from './unique-operation-name.js'; |
| 8 | +import { rule as inputName } from './input-name/index.js'; |
| 9 | +import { rule as loneExecutableDefinition } from './lone-executable-definition/index.js'; |
| 10 | +import { rule as matchDocumentFilename } from './match-document-filename/index.js'; |
| 11 | +import { rule as namingConvention } from './naming-convention/index.js'; |
| 12 | +import { rule as noAnonymousOperations } from './no-anonymous-operations/index.js'; |
| 13 | +import { rule as noDeprecated } from './no-deprecated/index.js'; |
| 14 | +import { rule as noDuplicateFields } from './no-duplicate-fields/index.js'; |
| 15 | +import { rule as noHashtagDescription } from './no-hashtag-description/index.js'; |
| 16 | +import { rule as noOnePlaceFragments } from './no-one-place-fragments/index.js'; |
| 17 | +import { rule as noRootType } from './no-root-type/index.js'; |
| 18 | +import { rule as noScalarResultTypeOnMutation } from './no-scalar-result-type-on-mutation/index.js'; |
| 19 | +import { rule as noTypenamePrefix } from './no-typename-prefix/index.js'; |
| 20 | +import { rule as noUnreachableTypes } from './no-unreachable-types/index.js'; |
| 21 | +import { rule as noUnusedFields } from './no-unused-fields/index.js'; |
| 22 | +import { rule as relayArguments } from './relay-arguments/index.js'; |
| 23 | +import { rule as relayConnectionTypes } from './relay-connection-types/index.js'; |
| 24 | +import { rule as relayEdgeTypes } from './relay-edge-types/index.js'; |
| 25 | +import { rule as relayPageInfo } from './relay-page-info/index.js'; |
| 26 | +import { rule as requireDeprecationDate } from './require-deprecation-date/index.js'; |
| 27 | +import { rule as requireDeprecationReason } from './require-deprecation-reason/index.js'; |
| 28 | +import { rule as requireDescription } from './require-description/index.js'; |
| 29 | +import { rule as requireFieldOfTypeQueryInMutationResult } from './require-field-of-type-query-in-mutation-result/index.js'; |
| 30 | +import { rule as requireImportFragment } from './require-import-fragment/index.js'; |
| 31 | +import { rule as requireNullableFieldsWithOneof } from './require-nullable-fields-with-oneof/index.js'; |
| 32 | +import { rule as requireNullableResultInRoot } from './require-nullable-result-in-root/index.js'; |
| 33 | +import { rule as requireSelections } from './require-selections/index.js'; |
| 34 | +import { rule as requireTypePatternWithOneof } from './require-type-pattern-with-oneof/index.js'; |
| 35 | +import { rule as selectionSetDepth } from './selection-set-depth/index.js'; |
| 36 | +import { rule as strictIdInTypes } from './strict-id-in-types/index.js'; |
| 37 | +import { rule as uniqueEnumValueNames } from './unique-enum-value-names/index.js'; |
| 38 | +import { rule as uniqueFragmentName } from './unique-fragment-name/index.js'; |
| 39 | +import { rule as uniqueOperationName } from './unique-operation-name/index.js'; |
40 | 40 |
|
41 | 41 | export const rules = {
|
42 | 42 | ...GRAPHQL_JS_VALIDATIONS,
|
|
0 commit comments