@@ -3,7 +3,7 @@ import unjs from 'eslint-config-unjs';
3
3
export default unjs ( {
4
4
rules : {
5
5
'@typescript-eslint/naming-convention' : 'off' ,
6
- " @typescript-eslint/no-duplicate-enum-values" : 'off' ,
6
+ ' @typescript-eslint/no-duplicate-enum-values' : 'off' ,
7
7
'@typescript-eslint/semi' : 'off' ,
8
8
'curly' : [ 'error' , 'all' ] ,
9
9
'eqeqeq' : 'warn' ,
@@ -23,6 +23,26 @@ export default unjs({
23
23
'prefer-const' : [ 'error' , { destructuring : 'any' , ignoreReadBeforeAssign : false } ] ,
24
24
'require-await' : 'error' ,
25
25
'sort-imports' : [ 'error' , { ignoreDeclarationSort : true } ] ,
26
+ 'no-unused-vars' : 'off' ,
27
+ '@typescript-eslint/no-unused-vars' : 'off' ,
28
+ 'no-template-curly-in-string' : 'off' ,
29
+ 'array-callback-return' : 'off' ,
30
+ 'camelcase' : 'off' ,
31
+ 'no-console' : 'off' ,
32
+ 'quotes' : [ 'error' , 'single' ] ,
33
+ 'comma-spacing' : [ 'error' , { before : false , after : true } ] ,
34
+ 'keyword-spacing' : [ 'error' , { before : true , after : true } ] ,
35
+ 'space-before-function-paren' : [ 'error' , 'always' ] ,
36
+ 'object-curly-spacing' : [ 'error' , 'always' ] ,
37
+ 'arrow-spacing' : [ 'error' , { before : true , after : true } ] ,
38
+ 'key-spacing' : [ 'error' , { beforeColon : false , afterColon : true , mode : 'strict' } ] ,
39
+ 'space-before-blocks' : [ 'error' , 'always' ] ,
40
+ 'space-infix-ops' : [ 'error' , { int32Hint : false } ] ,
41
+ '@typescript-eslint/no-explicit-any' : 'off' ,
42
+ '@typescript-eslint/ban-types' : 'off' ,
43
+ '@typescript-eslint/ban-ts-comment' : 'off' ,
44
+ '@typescript-eslint/no-extraneous-class' : 'off' ,
45
+ 'comma-dangle' : 'off' ,
26
46
} ,
27
47
ignores : [
28
48
'out' ,
0 commit comments