forked from uhm-coe/authorizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
34 lines (34 loc) · 797 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
{
// Extra comma rule conflicts with dangling-comma rule.
"-W070": false,
// "Wrapping non-IIFE function literals in parens is unnecessary" rule conflicts with WordPress IIFE headers.
"-W068": false,
// Allow multistrings.
"multistr": true,
// Standard WordPress rules are below. See: https://develop.svn.wordpress.org/trunk/.jshintrc
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"es3": true,
"expr": true,
"immed": true,
"noarg": true,
"nonbsp": true,
"onevar": true,
"quotmark": "single",
"trailing": true,
"undef": true,
"unused": true,
"browser": true,
"globals": {
"_": false,
"Backbone": false,
"jQuery": false,
"JSON": false,
"wp": false,
"export": false,
"module": false,
"require": false
}
}