File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ const sortingParamsOptionSchema: JSONSchema4 = {
44
44
/**
45
45
* The schema for the rule options.
46
46
*/
47
- const schema : JSONSchema4 = [ sortingOrderOptionSchema , sortingParamsOptionSchema ]
47
+ const schema : JSONSchema4 [ ] = [ sortingOrderOptionSchema , sortingParamsOptionSchema ]
48
48
49
49
/**
50
50
* The default options for the rule.
@@ -68,7 +68,6 @@ const meta: RuleMetaData<keyof typeof errorMessages> = {
68
68
type : 'suggestion' ,
69
69
docs : {
70
70
description : 'require interface keys to be sorted' ,
71
- category : 'Stylistic Issues' ,
72
71
recommended : 'warn' ,
73
72
} ,
74
73
messages : errorMessages ,
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ const sortingParamsOptionSchema: JSONSchema4 = {
41
41
/**
42
42
* The schema for the rule options.
43
43
*/
44
- const schema : JSONSchema4 = [ sortingOrderOptionSchema , sortingParamsOptionSchema ]
44
+ const schema : JSONSchema4 [ ] = [ sortingOrderOptionSchema , sortingParamsOptionSchema ]
45
45
46
46
/**
47
47
* The default options for the rule.
@@ -65,7 +65,6 @@ const meta: RuleMetaData<keyof typeof errorMessages> = {
65
65
type : 'suggestion' ,
66
66
docs : {
67
67
description : 'require string enum members to be sorted' ,
68
- category : 'Stylistic Issues' ,
69
68
recommended : 'warn' ,
70
69
} ,
71
70
messages : errorMessages ,
You can’t perform that action at this time.
0 commit comments