-
Notifications
You must be signed in to change notification settings - Fork 16
/
.eslintrc
43 lines (42 loc) · 836 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
33
34
35
36
37
38
39
40
41
42
{
"extends": [
"standard"
],
"plugins": [
"html",
"import",
"babel"
],
"env": {
"browser": true,
"node": true,
"es6": true,
"jquery": true,
"commonjs": true,
"phantomjs": true,
"mocha": true
},
"rules": {
"no-confusing-arrow": "off",
"babel/new-cap": 1,
"no-undef": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/no-webpack-loader-syntax": "off",
"keyword-spacing": "off",
"no-unused-vars": [ 0, { "varsIgnorePattern": "Component$", "args": "none" } ],
"no-new": 0,
"indent": [
"error",
2,
{ "ignoredNodes": [ "Program" ] }
]
},
"parser": "typescript-eslint-parser",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
}