File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 37
37
// with underscores.
38
38
"camelcase" : true ,
39
39
40
- // Prohibit the use of == and != in favor of === and !==.
40
+ // Prohibit use of == and != in favor of === and !==.
41
41
"eqeqeq" : true ,
42
42
43
43
// Suppress warnings about == null comparisons.
44
44
"eqnull" : true ,
45
45
46
- // Enforce a tab width of 2 spaces.
46
+ // Enforce tab width of 2 spaces.
47
47
"indent" : 2 ,
48
48
49
- // Prohibit the use of a variable before it was defined.
49
+ // Prohibit use of a variable before it is defined.
50
50
"latedef" : true ,
51
51
52
52
// Require capitalized names for constructor functions.
55
55
// Prohibit trailing whitespace.
56
56
"trailing" : true ,
57
57
58
- // Prohibit the use of explicitly undeclared variables.
58
+ // Prohibit use of explicitly undeclared variables.
59
59
"undef" : true ,
60
60
61
61
// Warn when variables are defined but never used.
You can’t perform that action at this time.
0 commit comments