-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
40 lines (38 loc) · 861 Bytes
/
.jshintrc
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
{
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": false,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single double",
"undef": true,
"unused": "vars",
"strict": true,
"trailing": true,
"smarttabs": true,
"browser": true,
"node": true,
"esnext": true,
"regexp": true,
"white": false,
"globals": {
"$": false,
"angular": false,
"jQuery": false
},
"predef": [
"confirm",
"describe", // Used by mocha
"it", // Used by mocha
"before", // Used by mocha
"beforeEach", // Used by mocha
"after", // Used by mocha
"afterEach", // Used by mocha
"inject", // Used by mocha
"expect" // Used by mocha
]
}