Skip to content

Commit

Permalink
infra(unicorn): prevent-abbreviations (#3320)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Dec 22, 2024
1 parent 1fd69d9 commit e0a96f2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,7 @@ const config: ReturnType<typeof tseslint.config> = tseslint.config(
'unicorn/prefer-string-raw': 'off', // The additional prefix doesn't help readability
'unicorn/prefer-string-slice': 'off', // string.substring is sometimes easier to use
'unicorn/prefer-ternary': 'off', // ternaries aren't always better

// TODO @Shinigami92 2023-09-23: The following rules currently conflict with our code.
// Each rule should be checked whether it should be enabled/configured and the problems fixed, or stay disabled permanently.
'unicorn/prevent-abbreviations': 'off',
'unicorn/prevent-abbreviations': 'off', // if abbreviations don't reduce readability, they're fine
},
},
//#endregion
Expand Down

0 comments on commit e0a96f2

Please sign in to comment.