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.
1 parent eb38a26 commit 3346611Copy full SHA for 3346611
eslint.config.mjs
@@ -48,7 +48,10 @@ export default tseslint.config(
48
'no-console': 'off',
49
'no-mixed-spaces-and-tabs': 'warn',
50
'no-self-compare': 'error',
51
- 'no-underscore-dangle': ['error', { allowAfterThis: true }],
+ 'no-underscore-dangle': [
52
+ 'error',
53
+ { allow: ['_internalState'], allowAfterThis: true },
54
+ ],
55
'no-use-before-define': 'off',
56
'no-useless-concat': 'error',
57
'no-var': 'error',
0 commit comments