capitalized-comments
UnreleasedConfiguration
Rule Details
This rule enforces a consistent style of comments across your codebase, specifically by either requiring or disallowing a capitalized letter as the first word character in a comment. This rule will not issue warnings when non-cased letters are used.
By default, this rule requires a non-lowercase letter at the beginning of comments.
Examples of incorrect code for this rule:
Examples of correct code for this rule:
Options
This rule has two options: a string value "always" or "never" which determines whether capitalization of the first word of a comment should be required or forbidden, and optionally an object containing more configuration parameters for the rule.
Here are the supported object options:
ignorePattern: A string representing a regular expression pattern of words that should be ignored by this rule. If the first word of a comment matches the pattern, this rule will not report that comment.- Note that the following words are always ignored by this rule:
["jscs", "jshint", "eslint", "rslint", "istanbul", "global", "globals", "exported"].
- Note that the following words are always ignored by this rule:
ignoreInlineComments: If this istrue, the rule will not report on comments in the middle of code. By default, this isfalse.ignoreConsecutiveComments: If this istrue, the rule will not report on a comment which violates the rule, as long as the comment immediately follows another comment. By default, this isfalse.
Here is an example configuration:
"always"
Using the "always" option means that this rule will report any comments which start with a lowercase letter. This is the default configuration for this rule.
Configuration comments and comments which start with URLs are never reported.
Examples of incorrect code for this rule:
Examples of correct code for this rule:
"never"
Using the "never" option means that this rule will report any comments which start with an uppercase letter.
Examples of incorrect code with the "never" option:
Examples of correct code with the "never" option:
ignorePattern
The ignorePattern option takes a string value, which is used as a regular expression applied to the first word of a comment.
Examples of correct code with the "ignorePattern" option set to "pragma":
ignoreInlineComments
Setting the ignoreInlineComments option to true means that comments in the middle of code (with a token on the same line as the beginning of the comment, and another token on the same line as the end of the comment) will not be reported by this rule.
Examples of correct code with the "ignoreInlineComments" option set to true:
The exemption applies to a block comment with a token on the same line as its start and a token on the same line as its end, which is what "in the middle of code" means here:
ignoreConsecutiveComments
If the ignoreConsecutiveComments option is set to true, then comments which otherwise violate the rule will not be reported as long as they immediately follow another comment. This can be applied more than once.
Examples of correct code with ignoreConsecutiveComments set to true:
Examples of incorrect code with ignoreConsecutiveComments set to true:
Use Different Options for Line and Block Comments
If you wish to have a different configuration for line comments and block comments, you can do so by using two different object configurations (note that the capitalization option will be enforced consistently for line and block comments):
Examples of incorrect code with different line and block comment configuration:
Examples of correct code with different line and block comment configuration:
Differences from ESLint
- An
ignorePatternthat is not a valid regular expression never matches any comment, instead of throwing an error when the rule is configured. rslintjoins the list of always-ignored words, so// rslint-disable-next-line no-consoleis treated the same as itseslint-equivalent.