Skip to content

Commit

Permalink
feat(eslint-plugin): replace no-new-symbol with `no-new-native-nonc…
Browse files Browse the repository at this point in the history
…onstructor` (#8895)

Co-authored-by: Brad Zacher <brad.zacher@gmail.com>
  • Loading branch information
reduckted and bradzacher committed Apr 15, 2024
1 parent 5542aeb commit fda5704
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/eslint-plugin/src/configs/eslint-recommended-raw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ export default (
'no-dupe-keys': 'off', // ts(1117)
'no-func-assign': 'off', // ts(2630)
'no-import-assign': 'off', // ts(2632) & ts(2540)
// TODO - remove this once we no longer support ESLint v8
'no-new-symbol': 'off', // ts(7009)
'no-new-native-nonconstructor': 'off', // ts(7009)
'no-obj-calls': 'off', // ts(2349)
'no-redeclare': 'off', // ts(2451)
'no-setter-return': 'off', // ts(2408)
Expand Down

0 comments on commit fda5704

Please sign in to comment.