-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.tern-project
96 lines (95 loc) · 1.95 KB
/
.tern-project
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
{
"ecmaVersion": 6,
"plugins": {
"eslint": {
"config": {
"env": {
"browser": true
},
"globals": {
"sap": true,
"jQuery": true
},
"rules": {
"block-scoped-var": 1,
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"consistent-this": 2,
"no-div-regex": 2,
"no-floating-decimal": 2,
"no-self-compare": 2,
"no-mixed-spaces-and-tabs": [
2,
true
],
"no-nested-ternary": 2,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "after-used"
}
],
"radix": 2,
"keyword-spacing": [
2,
"always"
],
"space-unary-ops": 2,
"wrap-iife": [
2,
"any"
],
"camelcase": 1,
"consistent-return": 1,
"max-nested-callbacks": [
1,
3
],
"new-cap": 0,
"no-extra-boolean-cast": 1,
"no-lonely-if": 1,
"no-new": 1,
"no-new-wrappers": 1,
"no-redeclare": 1,
"no-unused-expressions": 1,
"no-use-before-define": [
1,
"nofunc"
],
"no-warning-comments": 1,
"strict": 1,
"valid-jsdoc": [
1,
{
"requireReturn": false
}
],
"default-case": 1,
"dot-notation": 0,
"eol-last": 0,
"eqeqeq": 0,
"no-trailing-spaces": 0,
"no-underscore-dangle": 0,
"quotes": 0
}
}
},
"outline": {
},
"jshint": {
"esversion":6,
"config": {
"maxerr": 50
}
}
},
"libs": [
"browser"
]
}