File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,6 @@ export default tsEslint.config(
33
33
'@stylistic' : stylistic ,
34
34
} ,
35
35
rules : {
36
- '@stylistic/member-delimiter-style' : 'off' ,
37
- '@stylistic/no-multi-spaces' : 'off' ,
38
- '@stylistic/comma-spacing' : 'off' ,
39
- '@stylistic/quotes' : [ 'warn' , 'backtick' ] ,
40
36
'@typescript-eslint/consistent-type-imports' : 'warn' ,
41
37
'tsdoc/syntax' : 'warn' ,
42
38
// TypeScript makes these safe & effective
@@ -53,6 +49,11 @@ export default tsEslint.config(
53
49
'@typescript-eslint/no-unsafe-return' : 'off' ,
54
50
'@typescript-eslint/no-explicit-any' : 'off' ,
55
51
'@typescript-eslint/ban-ts-comment' : [ 'warn' , { 'ts-expect-error' : false } ] ,
52
+ // Disable dprint conflicts:
53
+ '@stylistic/member-delimiter-style' : 'off' ,
54
+ '@stylistic/no-multi-spaces' : 'off' ,
55
+ '@stylistic/comma-spacing' : 'off' ,
56
+ '@stylistic/quotes' : [ 'warn' , 'backtick' ] ,
56
57
} ,
57
58
} ,
58
59
)
You can’t perform that action at this time.
0 commit comments