File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ const sortingParamsOptionSchema: JSONSchema4 = {
4444/**
4545 * The schema for the rule options.
4646 */
47- const schema : JSONSchema4 = [ sortingOrderOptionSchema , sortingParamsOptionSchema ]
47+ const schema : JSONSchema4 [ ] = [ sortingOrderOptionSchema , sortingParamsOptionSchema ]
4848
4949/**
5050 * The default options for the rule.
@@ -68,7 +68,6 @@ const meta: RuleMetaData<keyof typeof errorMessages> = {
6868 type : 'suggestion' ,
6969 docs : {
7070 description : 'require interface keys to be sorted' ,
71- category : 'Stylistic Issues' ,
7271 recommended : 'warn' ,
7372 } ,
7473 messages : errorMessages ,
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ const sortingParamsOptionSchema: JSONSchema4 = {
4141/**
4242 * The schema for the rule options.
4343 */
44- const schema : JSONSchema4 = [ sortingOrderOptionSchema , sortingParamsOptionSchema ]
44+ const schema : JSONSchema4 [ ] = [ sortingOrderOptionSchema , sortingParamsOptionSchema ]
4545
4646/**
4747 * The default options for the rule.
@@ -65,7 +65,6 @@ const meta: RuleMetaData<keyof typeof errorMessages> = {
6565 type : 'suggestion' ,
6666 docs : {
6767 description : 'require string enum members to be sorted' ,
68- category : 'Stylistic Issues' ,
6968 recommended : 'warn' ,
7069 } ,
7170 messages : errorMessages ,
You can’t perform that action at this time.
0 commit comments