-
Notifications
You must be signed in to change notification settings - Fork 33
/
.eslintrc.js
97 lines (96 loc) · 2.87 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
module.exports = {
root : true,
parser : 'babel-eslint',
parserOptions : {
ecmaVersion : 2018,
sourceType : 'module',
ecmaFeatures : {
legacyDecorators : true,
},
},
plugins : [
'align-assignments',
'ember',
'varspacing',
],
extends : [
'eslint:recommended',
'plugin:ember/recommended',
'standard',
'plugin:varspacing/recommended',
],
env : {
browser : true,
},
rules : {
'align-assignments/align-assignments' : 'error',
'arrow-parens' : 'off',
'camelcase' : 'off',
'comma-dangle' : ['error', 'always-multiline'],
'ember/no-jquery' : 'error',
'ember/no-observers' : 'off',
'func-call-spacing' : 'off',
'generator-star-spacing' : 'off',
'indent' : ['error', 2, {flatTernaryExpressions : true}],
'key-spacing' : ['error', { beforeColon : true, afterColon : true, align : 'colon' }],
'new-cap' : 'off',
'no-console' : 'off',
'no-mixed-operators' : 'off',
'no-multi-spaces' : 'off',
'no-multiple-empty-lines' : 'off',
'no-return-assign' : 'off',
'no-sequences' : 'off',
'no-template-curly-in-string' : 'off',
'no-whitespace-before-property' : 'off',
'object-curly-spacing' : 'off',
'operator-linebreak' : 'off',
'padded-blocks' : 'off',
'quote-props' : ['error', 'consistent-as-needed'],
'quotes' : ['error', 'single'],
'spaced-comment' : 'off',
'standard/object-curly-even-spacing' : 'off',
},
overrides : [
// node files
{
files : [
'.eslintrc.js',
'.template-lintrc.js',
'ember-cli-build.js',
'index.js',
'testem.js',
'blueprints/*/index.js',
'config/**/*.js',
'tests/dummy/config/**/*.js',
],
excludedFiles : [
'addon/**',
'addon-test-support/**',
'app/**',
'tests/dummy/app/**',
'tests/pages/**',
],
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
}),
},
// tests
{
files : [
'tests/**/*.js',
],
rules : {
'no-unused-expressions' : 'off',
},
},
],
}