forked from mcasimir/mobile-angular-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
40 lines (40 loc) · 811 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
{
"extends": [
"eslint:recommended",
"google"
],
"plugins": [
"babel"
],
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {}
},
"globals": {
"angular": false,
"FastClick": false,
"overthrow": false
},
"env": {
"browser": true,
"node": true
},
"rules": {
"new-cap": 0,
"no-console": [1, { "allow": ["info", "warn", "error"] }],
"quotes": [2, "single"],
"no-unused-vars": 2,
"eqeqeq": 2,
"complexity": [2, 10],
"max-len": [2, 160],
"comma-dangle": [2, "never"],
"no-mixed-spaces-and-tabs": 2,
"quote-props": [2, "as-needed"],
"padded-blocks": 0,
"require-jsdoc": 0,
"generator-star-spacing": 0,
"babel/generator-star-spacing": 1,
"valid-jsdoc": 1
}
}