no-warning-comments
禁止在注释中使用指定的警告术语
开发人员通常会在代码中添加注释,这些代码不完整或需要审查。您很可能想要修复或审查代码,然后在认为代码已准备好投入生产之前删除注释。
// TODO: do something
// FIXME: this is not a good idea
规则详情
此规则报告包含其配置中指定的任何预定义术语的注释。
选项
此规则具有一个选项对象字面量
"terms"
:要匹配的术语的可选数组。默认为["todo", "fixme", "xxx"]
。术语不区分大小写并作为整个单词匹配:fix
将匹配FIX
但不匹配fixing
。术语可以包含多个单词:really bad idea
。"location"
:一个可选字符串,用于配置在注释中的哪个位置检查匹配项。默认为"start"
。起始位置是从第一个非装饰字符开始,忽略空格、换行符和decoration
中指定的字符。另一个值是匹配注释中的anywhere
。"decoration"
:当location
为"start"
时,在注释开头被忽略的字符的可选数组。默认为[]
。任何空格序列或此属性中的字符都将被忽略。当location
为"anywhere"
时,此选项将被忽略。
对于默认 { "terms": ["todo", "fixme", "xxx"], "location": "start" }
选项,错误代码示例
在游乐场中打开
/*eslint no-warning-comments: "error"*/
function callback(err, results) {
if (err) {
console.error(err);
return;
}
}
对于默认 { "terms": ["todo", "fixme", "xxx"], "location": "start" }
选项,正确代码示例
在游乐场中打开
/*eslint no-warning-comments: "error"*/
function callback(err, results) {
if (err) {
console.error(err);
return;
}
// NOT READY FOR PRIME TIME
// but too bad, it is not a predefined warning term
}
术语和位置
对于 { "terms": ["todo", "fixme", "any other term"], "location": "anywhere" }
选项,错误代码示例
在游乐场中打开
/*eslint no-warning-comments: ["error", { "terms": ["todo", "fixme", "any other term"], "location": "anywhere" }]*/
对于 { "terms": ["todo", "fixme", "any other term"], "location": "anywhere" }
选项,正确代码示例
在游乐场中打开
/*eslint no-warning-comments: ["error", { "terms": ["todo", "fixme", "any other term"], "location": "anywhere" }]*/
// This is to do
// even not any other term
// any other terminal
/*
* The same goes for block comments
* with any other interesting term
* or fix me this
*/
装饰字符
对于 { "decoration": ["*"] }
选项,错误代码示例
在游乐场中打开
/*eslint no-warning-comments: ["error", { "decoration": ["*"] }]*/
对于 { "decoration": ["/", "*"] }
选项,错误代码示例
在游乐场中打开
/*eslint no-warning-comments: ["error", { "decoration": ["/", "*"] }]*/
对于 { "decoration": ["/", "*"] }
选项,正确代码示例
在游乐场中打开
/*eslint no-warning-comments: ["error", { "decoration": ["/", "*"] }]*/
//!TODO preceded by non-decoration character
/**
*!TODO preceded by non-decoration character in a block comment
*/
何时不使用它
- 如果您有一个大型代码库,该代码库并非按照不使用此类警告术语的策略开发,您可能会收到数百条警告/错误,如果您无法修复所有这些警告/错误(例如,如果您没有时间这样做),这可能会适得其反,因为您可能会忽略其他警告/错误,或者习惯了许多警告/错误,不再注意它们。
- 与上一点相同的原因:您不应该配置使用非常频繁的术语(例如,在注释中使用的母语的核心部分)。
版本
此规则在 ESLint v0.4.4 中引入。