Skip to content

Commit 2451138

Browse files
committed
ESLint: Disable unicorn/no-await-expression-member rule
1 parent ce2c3ca commit 2451138

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ module.exports = {
3838
'unicorn/explicit-length-check': ['error', { 'non-zero': 'not-equal' }],
3939
// disabled because of false positives related to `EmberArray`
4040
'unicorn/no-array-for-each': 'off',
41+
// disabled because it is annoying in some cases...
42+
'unicorn/no-await-expression-member': 'off',
4143
// disabled because we need `null` since JSON has no `undefined`
4244
'unicorn/no-null': 'off',
4345
// disabled because this rule conflicts with prettier

0 commit comments

Comments
 (0)