UNPKG

493 BJavaScriptView Raw
1'use strict'
2
3module.exports = {
4 extends: [
5 require.resolve('./'),
6 ],
7 plugins: [
8 'ember',
9 ],
10 rules: {
11 'no-underscore-dangle': [2, { allow: [
12 '_super',
13 '__container__',
14 ]}],
15 'consistent-return': 0,
16 'no-lonely-if': 2,
17 'array-bracket-newline': ['error', { 'multiline': true }],
18 'ember/local-modules': 1,
19 'ember/closure-actions': 1,
20 'ember/no-side-effects': 1,
21 'ember/no-observers': 1,
22 'ember/use-ember-get-and-set': 1,
23 },
24}