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

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

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


使现代化

ESlint现在已经更新了一种更好的禁用单行的方法,参见@gobballLogic的优秀答案。

旧答案:

您可以使用以下选项

/*eslint-disable */

//suppress all warnings between comments
alert('foo');

/*eslint-enable */

它稍微隐藏在文档的“配置规则”部分中;

要禁用整个文件的警告,可以在文件顶部添加注释,例如。

/*eslint eqeqeq:0*/

要禁用下一行:

// eslint-disable-next-line no-use-before-define
var thing = new Thing();

或者使用单行语法:

var thing = new Thing(); // eslint-disable-line no-use-before-define

查看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-规则


一般的行尾注释//eslint-disable行后面不需要任何内容:不需要查找代码来指定希望eslint忽略的内容。

如果您需要出于任何原因而忽略任何语法,而不是快速调试,那么您就会遇到问题:为什么不更新delint配置?

我喜欢//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 no-undef: "off"*/
const uploadData = new FormData();

从配置ESLint-使用内联注释禁用规则:

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


/* eslint-disable */

alert('foo');

/* eslint-enable */


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

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

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


/* eslint-disable */

alert('foo');


/* eslint-disable no-alert */

alert('foo');


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

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


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

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


alert('foo'); // eslint-disable-line no-alert, quotes, semi

// eslint-disable-next-line no-alert, quotes, semi
alert('foo');


foo(); // eslint-disable-line example/rule-name

您可以在项目中添加给.eslitingnore文件带来错误的文件。与所有.vue文件一样,只需添加/*.vue


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

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


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

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

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

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

我的回答与其他人的回答相似,但表明了你如何也可以在同一行给自己添加评论。

// eslint-disable-line // THIS WON"T WORK

使用--如果您还需要在该行上写注释(例如,可能是esint被禁用的原因)

// eslint-disable-line -- comment to self (This DOES work)

可与特定eslint规则一起使用以忽略:

// eslint-disable-line no-console -- comment to self (This Also Works!)

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

// @ts-ignore
$scope.someVar = ConstructorFunction();