forked from udacity/course-es6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
122 lines (122 loc) · 2.26 KB
/
.eslintrc
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
{
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"rules": {
"curly": [
"error",
"all"
],
"eqeqeq": [
"error",
"allow-null"
],
"no-alert": "error",
"no-caller": "error",
"no-console": "off",
"no-empty-function": "error",
"no-eval": "error",
"no-multi-spaces": "error",
"no-multi-str": "error",
"no-global-assign": "error",
"no-new": "error",
"no-new-func": "error",
"no-new-wrappers": "error",
"no-return-assign": "error",
"no-script-url": "error",
"no-sequences": "error",
"no-unused-expressions": "error",
"no-with": "error",
"object-property-newline": "error",
"object-curly-newline": [
"error",
{ "multiline": true }
],
"yoda": "error",
"array-bracket-spacing": [
"error",
"never"
],
"brace-style": [
"error",
"1tbs"
],
"no-shadow": "error",
"no-shadow-restricted-names": "error",
"no-undef-init": "error",
"camelcase": "error",
"comma-spacing": "error",
"eol-last": "error",
"quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"key-spacing": [
"error",
{
"beforeColon": false,
"afterColon": true
}
],
"keyword-spacing": "error",
"new-cap": "error",
"new-parens": "error",
"no-array-constructor": "error",
"no-multiple-empty-lines": [
"error",
{
"max": 2
}
],
"no-new-object": "error",
"func-call-spacing": [
"error",
"never"
],
"no-trailing-spaces": "error",
"semi": [
"error",
"always"
],
"semi-spacing": [
"error",
{
"before": false,
"after": true
}
],
"space-before-blocks": [
"error",
"always"
],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never"
}
],
"space-in-parens": [
"error",
"never"
],
"space-infix-ops": "error"
}
}