Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fda5704

Browse files
feat(eslint-plugin): replace no-new-symbol with no-new-native-nonconstructor (typescript-eslint#8895)
Co-authored-by: Brad Zacher <[email protected]>
1 parent 5542aeb commit fda5704

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/eslint-plugin/src/configs/eslint-recommended-raw.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export default (
2828
'no-dupe-keys': 'off', // ts(1117)
2929
'no-func-assign': 'off', // ts(2630)
3030
'no-import-assign': 'off', // ts(2632) & ts(2540)
31+
// TODO - remove this once we no longer support ESLint v8
3132
'no-new-symbol': 'off', // ts(7009)
33+
'no-new-native-nonconstructor': 'off', // ts(7009)
3234
'no-obj-calls': 'off', // ts(2349)
3335
'no-redeclare': 'off', // ts(2451)
3436
'no-setter-return': 'off', // ts(2408)

0 commit comments

Comments
 (0)