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

Skip to content

Commit 099fd4c

Browse files
authored
feat(eslint-plugin): disable no-class-assign rule in eslint-recommended config (typescript-eslint#10250)
1 parent fdea1ab commit 099fd4c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const config = (
2222
rules: {
2323
'constructor-super': 'off', // ts(2335) & ts(2377)
2424
'getter-return': 'off', // ts(2378)
25+
'no-class-assign': 'off', // ts(2629)
2526
'no-const-assign': 'off', // ts(2588)
2627
'no-dupe-args': 'off', // ts(2300)
2728
'no-dupe-class-members': 'off', // ts(2393) & ts(2300)

0 commit comments

Comments
 (0)