File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 19
19
* =================
20
20
*/
21
21
22
- // Defines globals exposed by modern browsers.
22
+ // Define globals exposed by modern browsers.
23
23
"browser" : true ,
24
24
25
- // Defines globals exposed by jQuery.
25
+ // Define globals exposed by jQuery.
26
26
"jquery" : true ,
27
27
28
28
/*
29
29
* ENFORCING OPTIONS
30
30
* =================
31
31
*/
32
32
33
- // Forces all variable names to use either camelCase style or UPPER_CASE
33
+ // Force all variable names to use either camelCase style or UPPER_CASE
34
34
// with underscores.
35
35
"camelcase" : true ,
36
36
37
- // Prohibits the use of == and != in favor of === and !==.
37
+ // Prohibit the use of == and != in favor of === and !==.
38
38
"eqeqeq" : true ,
39
39
40
- // Suppresses warnings about == null comparisons.
40
+ // Suppress warnings about == null comparisons.
41
41
"eqnull" : true ,
42
42
43
- // Enforces a tab width of 2 spaces.
43
+ // Enforce a tab width of 2 spaces.
44
44
"indent" : 2 ,
45
45
46
- // Prohibits the use of a variable before it was defined.
46
+ // Prohibit the use of a variable before it was defined.
47
47
"latedef" : true ,
48
48
49
- // $equires you to capitalize names of constructor functions.
49
+ // Require you to capitalize names of constructor functions.
50
50
"newcap" : true ,
51
51
52
- // Makes it an error to leave a trailing whitespace in your code.
52
+ // Make it an error to leave a trailing whitespace in your code.
53
53
"trailing" : true ,
54
54
55
- // Prohibits the use of explicitly undeclared variables.
55
+ // Prohibit the use of explicitly undeclared variables.
56
56
"undef" : true ,
57
57
58
- // Warns when you define and never use your variables.
58
+ // Warn when you define and never use your variables.
59
59
"unused" : true
60
60
}
61
61
}
You can’t perform that action at this time.
0 commit comments