forked from adopted-ember-addons/ember-file-upload
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
95 lines (95 loc) · 2.08 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
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module'
},
plugins: [
'ember'
],
extends: [
'eslint:recommended',
'plugin:ember/recommended'
],
env: {
browser: true
},
globals: {
// Mirage server
server: true,
},
rules: {
'ember/no-jquery': 2,
'comma-dangle': [1, 'never'],
'no-debugger': 2,
'no-dupe-args': 2,
'no-dupe-keys': 2,
'no-duplicate-case': 2,
'no-empty': 2,
'no-irregular-whitespace': 2,
'no-multi-spaces': 0,
'complexity': [1, 7],
'dot-location': [2, 'property'],
'eqeqeq': [2, 'allow-null'],
'guard-for-in': 2,
'no-caller': 2,
'no-eval': 2,
'no-extra-bind': 2,
'no-implied-eval': 2,
'yoda': [2, 'never', {
'exceptRange': true
}],
'brace-style': [2, '1tbs', { 'allowSingleLine': true }],
'camelcase': 0,
'comma-spacing': 0,
'comma-style': [2, 'last'],
'indent': [2, 2],
'key-spacing': [2, {
'beforeColon': false,
'afterColon': true
}],
'linebreak-style': [2, 'unix'],
'max-nested-callbacks': [2, 3],
'new-cap': 0,
'no-lonely-if': 2,
'no-trailing-spaces': 2,
'no-underscore-dangle': 0,
'one-var': [2, {
'uninitialized': 'always',
'initialized': 'never'
}],
'quotes': [2, 'single', {'allowTemplateLiterals': true }],
'semi': [2, 'always'],
'keyword-spacing': 2
},
overrides: [
// node files
{
files: [
'ember-cli-build.js',
'index.js',
'testem.js',
'config/**/*.js',
'tests/dummy/config/**/*.js'
],
excludedFiles: [
'addon/**',
'addon-test-support/**',
'app/**',
'tests/dummy/app/**'
],
parserOptions: {
sourceType: 'script',
ecmaVersion: 2015
},
env: {
browser: false,
node: true
},
plugins: ['node'],
rules: Object.assign({}, require('eslint-plugin-node').configs.recommended.rules, {
// add your custom rules and overrides for node files here
})
}
]
};