Skip to content

Commit 9c4f415

Browse files
committed
Use the imperative mood in comments, 'Prohibit' instead of 'Prohibits'
1 parent 9ae773e commit 9c4f415

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

linters/SublimeLinter/SublimeLinter.sublime-settings

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,43 +19,43 @@
1919
* =================
2020
*/
2121

22-
// Defines globals exposed by modern browsers.
22+
// Define globals exposed by modern browsers.
2323
"browser": true,
2424

25-
// Defines globals exposed by jQuery.
25+
// Define globals exposed by jQuery.
2626
"jquery": true,
2727

2828
/*
2929
* ENFORCING OPTIONS
3030
* =================
3131
*/
3232

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
3434
// with underscores.
3535
"camelcase": true,
3636

37-
// Prohibits the use of == and != in favor of === and !==.
37+
// Prohibit the use of == and != in favor of === and !==.
3838
"eqeqeq": true,
3939

40-
// Suppresses warnings about == null comparisons.
40+
// Suppress warnings about == null comparisons.
4141
"eqnull": true,
4242

43-
// Enforces a tab width of 2 spaces.
43+
// Enforce a tab width of 2 spaces.
4444
"indent": 2,
4545

46-
// Prohibits the use of a variable before it was defined.
46+
// Prohibit the use of a variable before it was defined.
4747
"latedef": true,
4848

49-
// $equires you to capitalize names of constructor functions.
49+
// Require you to capitalize names of constructor functions.
5050
"newcap": true,
5151

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.
5353
"trailing": true,
5454

55-
// Prohibits the use of explicitly undeclared variables.
55+
// Prohibit the use of explicitly undeclared variables.
5656
"undef": true,
5757

58-
// Warns when you define and never use your variables.
58+
// Warn when you define and never use your variables.
5959
"unused": true
6060
}
6161
}

0 commit comments

Comments
 (0)