Skip to content

Commit b892525

Browse files
committed
Disable escape-case and no-hex-escape in the recommended config until they work reliably: https://github.com/sindresorhus/eslint-plugin-unicorn/issues/85
1 parent b667096 commit b892525

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ module.exports = {
2020
'unicorn/no-process-exit': 'error',
2121
'unicorn/throw-new-error': 'error',
2222
'unicorn/number-literal-case': 'error',
23-
'unicorn/escape-case': 'error',
23+
'unicorn/escape-case': 'off',
2424
'unicorn/no-array-instanceof': 'error',
2525
'unicorn/no-new-buffer': 'error',
26-
'unicorn/no-hex-escape': 'error',
26+
'unicorn/no-hex-escape': 'off',
2727
'unicorn/custom-error-definition': 'error',
2828
'unicorn/prefer-starts-ends-with': 'error',
2929
'unicorn/prefer-type-error': 'error'

0 commit comments

Comments
 (0)