We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de01fa3 commit 906e772Copy full SHA for 906e772
eslint.config.mjs
@@ -34,13 +34,17 @@ export default [
34
'sonarjs/cognitive-complexity': 'off',
35
'sonarjs/no-duplicate-string': 'off',
36
'unicorn/filename-case': 'off',
37
+ 'unicorn/no-this-assignment': 'off',
38
'unicorn/no-array-callback-reference': 'off',
39
'unicorn/no-for-loop': 'off',
40
'unicorn/no-null': 'off',
- 'unicorn/no-this-assignment': 'off',
41
+ // disabled for js compressor compatibility
42
+ // it does not support new JS features
43
+ // TODO: find a replacement for compressor
44
'unicorn/numeric-separators-style': 'off',
45
'unicorn/prefer-module': 'off',
46
'unicorn/prefer-spread': 'off',
47
+ 'unicorn/prefer-string-raw': 'off',
48
},
49
50
];
0 commit comments