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.
unicorn/no-await-expression-member
1 parent ce2c3ca commit 2451138Copy full SHA for 2451138
.eslintrc.js
@@ -38,6 +38,8 @@ module.exports = {
38
'unicorn/explicit-length-check': ['error', { 'non-zero': 'not-equal' }],
39
// disabled because of false positives related to `EmberArray`
40
'unicorn/no-array-for-each': 'off',
41
+ // disabled because it is annoying in some cases...
42
+ 'unicorn/no-await-expression-member': 'off',
43
// disabled because we need `null` since JSON has no `undefined`
44
'unicorn/no-null': 'off',
45
// disabled because this rule conflicts with prettier
0 commit comments