Eslint
规则 | Rules

no-inline-comments

代码后不允许内联注释(no-inline-comments)

一些风格指南不允许与代码在同一行上发表评论。如果注释紧跟在同一行上的代码之后,代码可能变得难以阅读。另一方面,在代码之后立即发表评论有时更快更明显。

规则细节

此规则不允许与代码在同一行上发表评论。

此规则的错误代码示例:

/*eslint no-inline-comments: "error"*/ var a = 1; // declaring a to 1 function getRandomNumber(){ return 4; // chosen by fair dice roll. // guaranteed to be random. } /* A block comment before code */ var b = 2; var c = 3; /* A block comment after code */

此规则的正确代码示例:

/*eslint no-inline-comments: "error"*/ // This is a comment above a line of code var foo = 5; var bar = 5; //This is a comment below a line of code

版本

该规则在 ESLint 0.10.0 中引入。

资源