Skip to content

Commit e0a96f2

Browse files
authored
infra(unicorn): prevent-abbreviations (#3320)
1 parent 1fd69d9 commit e0a96f2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

eslint.config.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,7 @@ const config: ReturnType<typeof tseslint.config> = tseslint.config(
159159
'unicorn/prefer-string-raw': 'off', // The additional prefix doesn't help readability
160160
'unicorn/prefer-string-slice': 'off', // string.substring is sometimes easier to use
161161
'unicorn/prefer-ternary': 'off', // ternaries aren't always better
162-
163-
// TODO @Shinigami92 2023-09-23: The following rules currently conflict with our code.
164-
// Each rule should be checked whether it should be enabled/configured and the problems fixed, or stay disabled permanently.
165-
'unicorn/prevent-abbreviations': 'off',
162+
'unicorn/prevent-abbreviations': 'off', // if abbreviations don't reduce readability, they're fine
166163
},
167164
},
168165
//#endregion

0 commit comments

Comments
 (0)