File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,7 @@ export function sortTsconfig(): TypedFlatConfigItem[] {
220
220
'stripInternal' ,
221
221
/* Interop Constraints */
222
222
'allowSyntheticDefaultImports' ,
223
+ 'erasableSyntaxOnly' ,
223
224
'esModuleInterop' ,
224
225
'forceConsistentCasingInFileNames' ,
225
226
'isolatedDeclarations' ,
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ export function unicorn(options: OptionsUnicorn = {}): TypedFlatConfigItem[] {
53
53
'unicorn/prefer-array-some' : 'error' ,
54
54
'unicorn/prefer-at' : 'error' ,
55
55
'unicorn/prefer-blob-reading-methods' : 'error' ,
56
+ 'unicorn/prefer-class-fields' : 'error' ,
56
57
'unicorn/prefer-date-now' : 'error' ,
57
58
'unicorn/prefer-dom-node-append' : 'error' ,
58
59
'unicorn/prefer-dom-node-dataset' : 'error' ,
@@ -80,6 +81,7 @@ export function unicorn(options: OptionsUnicorn = {}): TypedFlatConfigItem[] {
80
81
// top level await is not supported in all environments
81
82
// 'unicorn/prefer-top-level-await': 'error',
82
83
'unicorn/prefer-type-error' : 'error' ,
84
+ // 'unicorn/require-module-specifiers': 'error',
83
85
'unicorn/throw-new-error' : 'error' ,
84
86
85
87
...overrides ,
You can’t perform that action at this time.
0 commit comments