Appearance
require include descriptions in ESLint directive-comments
This rule warns directive comments without description.
WARNING
This rule can only be used with ESLint v7.x or later.
Examples of 👎 incorrect code for this rule:
Examples of 👍 correct code for this rule:
You can specify ignored directive-comments.
{ "@eslint-community/eslint-comments/require-description": ["error", {"ignore": []}] }
ignore
"eslint"
"eslint-disable"
"eslint-disable-line"
"eslint-disable-next-line"
"eslint-enable"
"eslint-env"
"exported"
"global"
"globals"
@eslint-community/eslint-comments/require-description
This rule warns directive comments without description.
WARNING
This rule can only be used with ESLint v7.x or later.
Rule Details
Examples of 👎 incorrect code for this rule:
Examples of 👍 correct code for this rule:
Options
You can specify ignored directive-comments.
ignore
option is an array to ignore specified directive-comments. The value of the array is some of the following strings:"eslint"
"eslint-disable"
"eslint-disable-line"
"eslint-disable-next-line"
"eslint-enable"
"eslint-env"
"exported"
"global"
"globals"
Further Reading