-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
27 lines (27 loc) · 851 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
{
// Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
// Documentation: http://www.jshint.com/docs/
"browser": true,
"esnext": true,
"globals": {
// MOCHA and CHAI
"describe" : false,
"it" : false,
"to" : false,
"ok" : false,
"be" : false,
"before" : false,
"beforeEach" : false,
"after" : false,
"afterEach" : false,
"equal" : false
},
"globalstrict": true,
"quotmark": true,
"smarttabs": true,
"trailing": true,
"undef": true,
"unused": true,
"node": true
}