为了在JSHint中关闭特定行的linting规则,我们使用以下规则:

/* jshint ignore:start*/
$scope.someVar = ConstructorFunction();
/* jshint ignore:end */

我一直在尝试为eslint找到与上述内容相同的内容。


当前回答

答复

您可以使用内联注释://eslint disable next line rule name。

实例

// eslint-disable-next-line no-console
console.log('eslint will ignore the no-console on this line of code');

参考

ESLint-禁用带有内联注释的规则

其他回答

答复

您可以使用内联注释://eslint disable next line rule name。

实例

// eslint-disable-next-line no-console
console.log('eslint will ignore the no-console on this line of code');

参考

ESLint-禁用带有内联注释的规则

您还可以通过在启用(打开)和禁用(关闭)块中指定特定规则(而不是全部)来禁用特定规则:

/* eslint-disable no-alert, no-console */

alert('foo');
console.log('bar');

/* eslint-enable no-alert */

通过上面@gobballMagic的链接:http://eslint.org/docs/user-guide/configuring.html#configuring-规则

要禁用特定行上的所有规则,请执行以下操作:

alert('foo'); // eslint-disable-line

或者对于下一行的多次忽略,使用逗号将规则字符串化

// eslint-disable-next-line class-methods-use-this, no-unused-vars

单行注释在反作用哑功能组件中对我不起作用,我通过添加/*eslint禁用insertEslintErrorDefinition此处*/

(通常,如果您正在使用vs代码并得到eslint错误,您可以单击给出错误的行,一个灯泡将显示在vs代码中,右键单击灯泡并选择任何禁用选项,vs代码将为您执行此操作。)