File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/plugin/src/rules Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11## Available Rules
22
3-
3+ - [ ` no-unreachable-types.md ` ] ( ./no-unreachable-types.md )
44- [ ` no-deprecated ` ] ( ./rules/no-deprecated.md )
55- [ ` unique-fragment-name ` ] ( ./rules/unique-fragment-name.md )
66- [ ` unique-operation-name ` ] ( ./rules/unique-operation-name.md )
5555
5656- [ Writing Custom Rules] ( ./custom-rules.md )
5757- [ How the parser works?] ( ./parser.md )
58- - [ ` parserOptions ` ] ( ./parser-options.md )
58+ - [ ` parserOptions ` ] ( ./parser-options.md )
Original file line number Diff line number Diff line change 11import validate from './validate-against-schema' ;
2+ import noUnreachableTypes from './no-unreachable-types' ;
23import noAnonymousOperations from './no-anonymous-operations' ;
34import noOperationNameSuffix from './no-operation-name-suffix' ;
45import requireDeprecationReason from './require-deprecation-reason' ;
@@ -20,6 +21,7 @@ import { GraphQLESLintRule } from '../types';
2021import { GRAPHQL_JS_VALIDATIONS } from './graphql-js-validation' ;
2122
2223export const rules : Record < string , GraphQLESLintRule > = {
24+ 'no-unreachable-types' : noUnreachableTypes ,
2325 'no-deprecated' : noDeprecated ,
2426 'unique-fragment-name' : uniqueFragmentName ,
2527 'unique-operation-name' : uniqueOperationName ,
You can’t perform that action at this time.
0 commit comments