-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
32 lines (31 loc) · 806 Bytes
/
.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
{
"env": {
"es6": true,
"browser":true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules":{
"quotes": [2,"single"],
"semi": [2, "always"],
"no-undef": 0,
"no-console":0
}
# "rules": {
# // enable additional rules
# "indent": ["error", 4],
# "linebreak-style": ["error", "unix"],
# "quotes": ["error", "double"],
# "semi": ["error", "always"],
#
# // override default options for rules from base configurations
# "comma-dangle": ["error", "always"],
# "no-cond-assign": ["error", "always"],
#
# // disable rules from base configurations
# "no-console": "off",
# }
}