chore(eslint): enforce lowercase hexadecimal literals

This commit is contained in:
theborakompanioni 2026-07-24 21:56:59 +02:00 committed by Thebora Kompanioni
parent 0eecb9444f
commit b221f3a77a

View file

@ -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