@@ -29,10 +29,6 @@ export default tseslint.config(
2929 import : eslintImport ,
3030 } ,
3131 rules : {
32- '@typescript-eslint/consistent-type-exports' : 'error' ,
33- '@typescript-eslint/consistent-type-imports' : [ 'error' , { prefer : 'type-imports' } ] ,
34- '@typescript-eslint/explicit-function-return-type' : [ 'warn' , { allowExpressions : true } ] ,
35- '@typescript-eslint/explicit-member-accessibility' : [ 'warn' , { accessibility : 'explicit' } ] ,
3632 '@typescript-eslint/member-ordering' : [ 'warn' , {
3733 default : [
3834 'public-static-field' ,
@@ -47,16 +43,21 @@ export default tseslint.config(
4743 'private-instance-method' ,
4844 ] ,
4945 } , ] ,
46+ '@typescript-eslint/consistent-type-exports' : 'error' ,
47+ '@typescript-eslint/consistent-type-imports' : [ 'error' , { prefer : 'type-imports' } ] ,
48+ '@typescript-eslint/explicit-function-return-type' : [ 'warn' , { allowExpressions : true } ] ,
49+ '@typescript-eslint/explicit-member-accessibility' : 'off' ,
5050 '@typescript-eslint/no-explicit-any' : 'off' ,
5151 '@typescript-eslint/no-floating-promises' : 'error' ,
5252 '@typescript-eslint/no-misused-promises' : 'warn' ,
5353 '@typescript-eslint/no-unnecessary-type-assertion' : 'error' ,
5454 '@typescript-eslint/no-unsafe-argument' : 'warn' ,
5555 '@typescript-eslint/no-unsafe-assignment' : 'off' ,
5656 '@typescript-eslint/no-unsafe-call' : 'off' ,
57+ '@typescript-eslint/no-unsafe-member-access' : 'off' ,
5758 '@typescript-eslint/no-unused-vars' : [ 'warn' , { argsIgnorePattern : '^_' } ] ,
5859 '@typescript-eslint/promise-function-async' : 'warn' ,
59- '@typescript-eslint/strict-boolean-expressions' : 'warn ' ,
60+ '@typescript-eslint/strict-boolean-expressions' : 'off ' ,
6061 '@typescript-eslint/unbound-method' : 'off' ,
6162 'curly' : 'error' ,
6263 'no-console' : 'warn' ,
0 commit comments