From 3c04ae6d004149747fe93eb93953292aa006e2f7 Mon Sep 17 00:00:00 2001 From: Philipp Spiess Date: Fri, 3 Jun 2022 14:36:14 +0200 Subject: [PATCH] feat: disable unicorn/number-literal-case (#255) --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 6018c6d8..6107659b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -335,6 +335,7 @@ module.exports = { // New rules added to unicorn 'unicorn/no-array-reduce': 'off', 'unicorn/no-array-callback-reference': 'off', + 'unicorn/number-literal-case': 'off', 'unicorn/numeric-separators-style': 'off', 'unicorn/prefer-switch': 'off', 'unicorn/prefer-spread': 'off',