We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c4f415 commit 859164dCopy full SHA for 859164d
linters/SublimeLinter/SublimeLinter.sublime-settings
@@ -46,16 +46,16 @@
46
// Prohibit the use of a variable before it was defined.
47
"latedef": true,
48
49
- // Require you to capitalize names of constructor functions.
+ // Require capitalized names for constructor functions.
50
"newcap": true,
51
52
- // Make it an error to leave a trailing whitespace in your code.
+ // Prohibit trailing whitespace.
53
"trailing": true,
54
55
// Prohibit the use of explicitly undeclared variables.
56
"undef": true,
57
58
- // Warn when you define and never use your variables.
+ // Warn when variables are defined but never used.
59
"unused": true
60
}
61
0 commit comments