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-class-assign
eslint-recommended
1 parent fdea1ab commit 099fd4cCopy full SHA for 099fd4c
packages/eslint-plugin/src/configs/eslint-recommended-raw.ts
@@ -22,6 +22,7 @@ const config = (
22
rules: {
23
'constructor-super': 'off', // ts(2335) & ts(2377)
24
'getter-return': 'off', // ts(2378)
25
+ 'no-class-assign': 'off', // ts(2629)
26
'no-const-assign': 'off', // ts(2588)
27
'no-dupe-args': 'off', // ts(2300)
28
'no-dupe-class-members': 'off', // ts(2393) & ts(2300)
0 commit comments