Skip to content

Commit cfa916e

Browse files
committed
Remove unnecessary articles from setting descriptions
1 parent c3f8a79 commit cfa916e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

linters/SublimeLinter/SublimeLinter.sublime-settings

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@
3737
// with underscores.
3838
"camelcase": true,
3939

40-
// Prohibit the use of == and != in favor of === and !==.
40+
// Prohibit use of == and != in favor of === and !==.
4141
"eqeqeq": true,
4242

4343
// Suppress warnings about == null comparisons.
4444
"eqnull": true,
4545

46-
// Enforce a tab width of 2 spaces.
46+
// Enforce tab width of 2 spaces.
4747
"indent": 2,
4848

49-
// Prohibit the use of a variable before it was defined.
49+
// Prohibit use of a variable before it is defined.
5050
"latedef": true,
5151

5252
// Require capitalized names for constructor functions.
@@ -55,7 +55,7 @@
5555
// Prohibit trailing whitespace.
5656
"trailing": true,
5757

58-
// Prohibit the use of explicitly undeclared variables.
58+
// Prohibit use of explicitly undeclared variables.
5959
"undef": true,
6060

6161
// Warn when variables are defined but never used.

0 commit comments

Comments
 (0)