Skip to content

Commit 5bb9518

Browse files
committed
infra(unicorn): numeric-separators-style
1 parent a082ed2 commit 5bb9518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ module.exports = defineConfig({
4545
'unicorn/no-null': 'off', // incompatible with TypeScript
4646
'unicorn/no-zero-fractions': 'off', // deactivated to raise awareness of floating operations
4747
'unicorn/number-literal-case': 'off', // incompatible with prettier
48+
'unicorn/numeric-separators-style': 'off', // "magic numbers" may carry specific meaning
4849
'unicorn/prefer-ternary': 'off', // ternaries aren't always better
4950

5051
// TODO @Shinigami92 2023-09-23: The following rules currently conflict with our code.
5152
// Each rule should be checked whether it should be enabled/configured and the problems fixed, or stay disabled permanently.
5253
'unicorn/better-regex': 'off',
5354
'unicorn/consistent-function-scoping': 'off',
5455
'unicorn/no-object-as-default-parameter': 'off',
55-
'unicorn/numeric-separators-style': 'off',
5656
'unicorn/prefer-export-from': 'off',
5757
'unicorn/prefer-string-slice': 'off',
5858
'unicorn/prevent-abbreviations': 'off',

0 commit comments

Comments
 (0)