@@ -22,27 +22,27 @@ import FieldsOnCorrectType from './rules/FieldsOnCorrectType';
22
22
import KnownFragmentNames from './rules/KnownFragmentNames' ;
23
23
// Spec Section: "Fragments must be used"
24
24
import NoUnusedFragments from './rules/NoUnusedFragments' ;
25
- // Spec Section "Fragment spread is possible"
25
+ // Spec Section: "Fragment spread is possible"
26
26
import PossibleFragmentSpreads from './rules/PossibleFragmentSpreads' ;
27
- // Spec Section "Fragments must not form cycles"
27
+ // Spec Section: "Fragments must not form cycles"
28
28
import NoFragmentCycles from './rules/NoFragmentCycles' ;
29
- // Spec Section "All Variables Used"
29
+ // Spec Section: "All Variables Used"
30
30
import NoUnusedVariables from './rules/NoUnusedVariables' ;
31
- // Spec Section "All Variable Used Defined"
31
+ // Spec Section: "All Variable Used Defined"
32
32
import NoUndefinedVariables from './rules/NoUndefinedVariables' ;
33
33
// Spec Section: "Argument Names"
34
34
import KnownArgumentNames from './rules/KnownArgumentNames' ;
35
- // TODO
35
+ // Spec Section: "Directives Are Defined"
36
36
import KnownDirectives from './rules/KnownDirectives' ;
37
- // Spec Section "Argument Values Type Correctness"
37
+ // Spec Section: "Argument Values Type Correctness"
38
38
import ArgumentsOfCorrectType from './rules/ArgumentsOfCorrectType' ;
39
- // TODO
39
+ // Spec Section: "Directive Arguments Are Of Correct Type"
40
40
import DirectivesOfCorrectType from './rules/DirectivesOfCorrectType' ;
41
- // Spec Section "Variable Default Values Are Correctly Typed"
41
+ // Spec Section: "Variable Default Values Are Correctly Typed"
42
42
import DefaultValuesOfCorrectType from './rules/DefaultValuesOfCorrectType' ;
43
- // Spec Section "All Variable Usages Are Allowed"
43
+ // Spec Section: "All Variable Usages Are Allowed"
44
44
import VariablesInAllowedPosition from './rules/VariablesInAllowedPosition' ;
45
- // TODO
45
+ // Spec Section: "Field Selection Merging"
46
46
import OverlappingFieldsCanBeMerged from './rules/OverlappingFieldsCanBeMerged' ;
47
47
48
48
/**
0 commit comments