We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@typescript-eslint/no-unused-expressions
1 parent 441d0f1 commit 0ddddadCopy full SHA for 0ddddad
1 file changed
@typescript-eslint.js
@@ -48,6 +48,7 @@ const config = {
48
],
49
'@typescript-eslint/no-unnecessary-qualifier': 'error',
50
'@typescript-eslint/no-unnecessary-type-arguments': 'error',
51
+ '@typescript-eslint/no-unused-expressions': 'error',
52
'@typescript-eslint/explicit-module-boundary-types': 'error',
53
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
54
'@typescript-eslint/no-use-before-define': [
@@ -77,6 +78,7 @@ const config = {
77
78
'@typescript-eslint/unbound-method': 'warn', // can be a bit wrong
79
'@typescript-eslint/unified-signatures': 'warn', // can be a bit wrong
80
81
+ 'no-unused-expressions': 'off',
82
'array-callback-return': 'off',
83
'block-scoped-var': 'off',
84
'consistent-return': 'off', // via --noImplicitReturns
0 commit comments