版本

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

JSX 异常

JSX 中花括号内的注释允许与花括号在同一行,但前提是它们不在与其他代码的同一行,并且花括号不包含实际表达式。

此规则的错误代码示例

在游乐场中打开
/*eslint no-inline-comments: "error"*/

var foo = <div>{ /* On the same line with other code */ }<h1>Some heading</h1></div>;

var bar = (
    <div>
    {   // These braces are not just for the comment, so it can't be on the same line
        baz
    }
    </div>
);

此规则的正确代码示例

在游乐场中打开
/*eslint no-inline-comments: "error"*/

var foo = (
    <div>
      {/* These braces are just for this comment and there is nothing else on this line */}
      <h1>Some heading</h1>
    </div>
)

var bar = (
    <div>
    {
        // There is nothing else on this line
        baz
    }
    </div>
);

var quux = (
    <div>
      {/*
        Multiline
        comment
      */}
      <h1>Some heading</h1>
    </div>
)

选项

ignorePattern

要使此规则忽略特定注释,请将ignorePattern选项设置为将传递给RegExp构造函数的字符串模式。

ignorePattern选项的正确代码示例

在游乐场中打开
/*eslint no-inline-comments: ["error", { "ignorePattern": "webpackChunkName:\\s.+" }]*/

import(/* webpackChunkName: "my-chunk-name" */ './locale/en');

ignorePattern选项的错误代码示例

在游乐场中打开
/*eslint no-inline-comments: ["error", { "ignorePattern": "something" }] */

var foo = 4; // other thing

版本

此规则在 ESLint v0.10.0 中引入。

资源

更改语言