@@ -142,17 +142,11 @@ module.exports = {
142142 '@typescript-eslint/prefer-function-type' : 'warn' ,
143143 '@typescript-eslint/indent' : 'off' ,
144144 '@typescript-eslint/prefer-for-of' : 'error' ,
145- '@typescript-eslint/member-delimiter-style' : [
146- 'warn' ,
147- {
148- multiline : { delimiter : 'none' , requireLast : true } ,
149- singleline : { delimiter : 'semi' , requireLast : false } ,
150- } ,
151- ] ,
145+ '@typescript-eslint/no-unsafe-function-type' : 'off' ,
146+ '@typescript-eslint/no-empty-object-type' : 'off' ,
152147 '@typescript-eslint/member-ordering' : 'warn' ,
153148 '@typescript-eslint/no-explicit-any' : 'warn' ,
154149 '@typescript-eslint/no-inferrable-types' : 'off' ,
155- '@typescript-eslint/no-parameter-properties' : 'off' ,
156150 '@typescript-eslint/no-this-alias' : 'off' ,
157151 '@typescript-eslint/no-unused-expressions' : [
158152 'error' ,
@@ -191,6 +185,7 @@ module.exports = {
191185 'import/no-commonjs' : 'off' ,
192186 '@typescript-eslint/explicit-function-return-type' : 'off' ,
193187 '@typescript-eslint/no-var-requires' : 'off' ,
188+ '@typescript-eslint/no-require-imports' : 'off' ,
194189 } ,
195190 } ,
196191 {
@@ -203,6 +198,7 @@ module.exports = {
203198 'import/no-commonjs' : 'off' ,
204199 '@typescript-eslint/explicit-function-return-type' : 'off' ,
205200 '@typescript-eslint/no-var-requires' : 'off' ,
201+ '@typescript-eslint/no-require-imports' : 'off' ,
206202 } ,
207203 } ,
208204 ] ,
0 commit comments