Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-new-symbol
no-new-native-nonconstructor
1 parent 5542aeb commit fda5704Copy full SHA for fda5704
packages/eslint-plugin/src/configs/eslint-recommended-raw.ts
@@ -28,7 +28,9 @@ export default (
28
'no-dupe-keys': 'off', // ts(1117)
29
'no-func-assign': 'off', // ts(2630)
30
'no-import-assign': 'off', // ts(2632) & ts(2540)
31
+ // TODO - remove this once we no longer support ESLint v8
32
'no-new-symbol': 'off', // ts(7009)
33
+ 'no-new-native-nonconstructor': 'off', // ts(7009)
34
'no-obj-calls': 'off', // ts(2349)
35
'no-redeclare': 'off', // ts(2451)
36
'no-setter-return': 'off', // ts(2408)
0 commit comments