From b221f3a77a0f99c817a0702530728772a6766b42 Mon Sep 17 00:00:00 2001 From: theborakompanioni Date: Fri, 24 Jul 2026 21:56:59 +0200 Subject: [PATCH] chore(eslint): enforce lowercase hexadecimal literals --- eslint.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index d96a277e..24065352 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -125,6 +125,12 @@ export default defineConfig( }, }, ], + 'unicorn/number-literal-case': [ + 'error', + { + hexadecimalValue: 'lowercase', + }, + ], 'unicorn/switch-case-braces': ['off'], // TODO: enable 'unicorn/no-null': ['off'], // TODO: enable