New eslint rule for ember-concurrency infinite loop pattern

This commit is contained in:
Michael Lange
2017-11-15 13:55:30 -08:00
parent b3abd78316
commit 0faacf2fa8

View File

@@ -16,5 +16,11 @@ module.exports = {
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single', 'avoid-escape'],
semi: ['error', 'always'],
'no-constant-condition': [
'error',
{
checkLoops: false,
},
],
},
};