From 462502abdb14cdc1c21b14a6be1ffa10e9e9e1ce Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Tue, 3 Dec 2024 18:41:56 +0100 Subject: [PATCH] infra(unicorn): prevent-abbreviations --- eslint.config.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eslint.config.ts b/eslint.config.ts index 0ae63ccc3d8..812c8a92937 100644 --- a/eslint.config.ts +++ b/eslint.config.ts @@ -159,10 +159,7 @@ const config: ReturnType = 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