File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ export async function typescript(
127
127
'ts/method-signature-style' : [ 'error' , 'property' ] , // https://www.totaltypescript.com/method-shorthand-syntax-considered-harmful
128
128
'ts/no-dupe-class-members' : 'error' ,
129
129
'ts/no-dynamic-delete' : 'off' ,
130
- 'ts/no-empty-object-type' : 'error' ,
130
+ 'ts/no-empty-object-type' : [ 'error' , { allowInterfaces : 'always' } ] ,
131
131
'ts/no-explicit-any' : 'off' ,
132
132
'ts/no-extraneous-class' : 'off' ,
133
133
'ts/no-import-type-side-effects' : 'error' ,
Original file line number Diff line number Diff line change @@ -162,7 +162,6 @@ export interface OptionsStylistic {
162
162
stylistic ?: boolean | StylisticConfig
163
163
}
164
164
165
- // eslint-disable-next-line ts/no-empty-object-type
166
165
export interface StylisticConfig
167
166
extends Pick < StylisticCustomizeOptions , 'indent' | 'quotes' | 'jsx' | 'semi' > {
168
167
}
You can’t perform that action at this time.
0 commit comments