-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy path.eslintrc.js
128 lines (126 loc) · 3.02 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
'use strict';
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
legacyDecorators: true
}
},
plugins: ['ember', 'prettier'],
extends: [
'screwdriver',
'plugin:ember/recommended',
'plugin:prettier/recommended',
'prettier' // last one wins
],
env: {
browser: true
},
globals: {
AnsiUp: true,
humanizeDuration: true
},
rules: {
'no-return-assign': 'off',
'no-underscore-dangle': 'off',
'prefer-const': 'off',
'prefer-destructuring': [
'warn',
{
VariableDeclarator: {
array: false,
object: true
},
AssignmentExpression: {
array: false,
object: true
}
},
{
enforceForRenamedProperties: false
}
],
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
'import/no-unresolved': 'off',
'import/no-mutable-exports': 'off',
'import/newline-after-import': 'off',
'ember/avoid-leaking-state-in-ember-objects': 'off',
'ember/jquery-ember-run': 'off',
'ember/no-global-jquery': 'off',
'ember/no-jquery': 'off',
'ember/no-new-mixins': 'off',
'ember/no-observers': 'off',
'ember/no-side-effects': 'off',
'ember/no-classic-classes': 'off',
'ember/no-get': 'off',
'ember/no-mixins': 'off',
'ember/use-ember-data-rfc-395-imports': 'off',
'ember/no-actions-hash': 'off',
'ember/no-controller-access-in-routes': 'off',
'ember/no-component-lifecycle-hooks': 'off',
'ember/no-classic-components': 'off',
'ember/require-tagless-components': 'off',
'ember/use-brace-expansion': 'off',
'ember/no-invalid-dependent-keys': 'off',
'ember/no-arrow-function-computed-properties': [
'error',
{ onlyThisContexts: true }
],
'max-lines-per-function': ['warn', { max: 1500, skipComments: true }],
'prettier/prettier': [
'error',
{},
{
usePrettierrc: true
}
]
},
overrides: [
// node files
{
files: [
'.eslintrc.js',
'.prettierrc.js',
'.template-lintrc.js',
'ember-cli-build.js',
'testem.js',
'blueprints/*/index.js',
'config/**/*.js',
'lib/*/index.js',
'server/**/*.js'
],
parserOptions: {
sourceType: 'script'
},
env: {
browser: false,
node: true
},
// plugins: ['node'],
// extends: ['plugin:node/recommended'],
rules: {
// this can be removed once the following is fixed
// https://github.com/mysticatea/eslint-plugin-node/issues/77
// 'node/no-unpublished-require': 'off',
'func-names': 'off'
}
},
// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
browser: true,
node: true
},
rules: {
'func-names': 'off',
'prefer-arrow-callback': 'off'
}
}
]
};