-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
24 lines (23 loc) · 806 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
{
// The plugin looks for a .jshintrc file in the same directory as the source
// file you're prettifying (or any directory above if it doesn't exist, or in
// your home folder if everything else fails) and uses those options along
// the default ones.
// 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/options/
"browser": true,
"esnext": true,
"globals": {},
"strict": false,
"undef": true,
"unused": true,
"devel": true, //accept console.log()
"validthis": true,
"laxcomma": true,
"laxbreak": true,
"browser": true,
"boss": true,
"expr": true,
"asi": true
}