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-array-for-each
1 parent aaefb78 commit a9d767cCopy full SHA for a9d767c
.eslintrc.js
@@ -39,6 +39,8 @@ module.exports = {
39
'ember-concurrency/require-task-name-suffix': 'error',
40
41
'unicorn/explicit-length-check': ['error', { 'non-zero': 'not-equal' }],
42
+ // disabled because of false positives related to `EmberArray`
43
+ 'unicorn/no-array-for-each': 'off',
44
// disabled because we need `null` since JSON has no `undefined`
45
'unicorn/no-null': 'off',
46
// disabled because this rule conflicts with prettier
0 commit comments