We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23d5776 commit 4604c5eCopy full SHA for 4604c5e
packages/eslint-config-react-app/index.js
@@ -92,6 +92,15 @@ module.exports = {
92
typedefs: false,
93
},
94
],
95
+ 'no-unused-expressions': 'off',
96
+ '@typescript-eslint/no-unused-expressions': [
97
+ 'error',
98
+ {
99
+ allowShortCircuit: true,
100
+ allowTernary: true,
101
+ allowTaggedTemplates: true,
102
+ },
103
+ ],
104
'no-unused-vars': 'off',
105
'@typescript-eslint/no-unused-vars': [
106
'warn',
0 commit comments