-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
28 lines (27 loc) · 832 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
{
// 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/
"bitwise": true,
"browser": true,
"camelcase": false,
"curly": true,
"elision": true,
"eqeqeq": true,
"esnext": false,
"esversion": 5,
"forin": true,
"freeze": true,
"futurehostile": true,
"immed": true,
"jquery": true,
"latedef": true,
"newcap": true,
"quotmark": "single",
"strict": true,
"under": true,
}