为了在JSHint中关闭特定行的linting规则,我们使用以下规则:
/* jshint ignore:start*/
$scope.someVar = ConstructorFunction();
/* jshint ignore:end */
我一直在尝试为eslint找到与上述内容相同的内容。
为了在JSHint中关闭特定行的linting规则,我们使用以下规则:
/* jshint ignore:start*/
$scope.someVar = ConstructorFunction();
/* jshint ignore:end */
我一直在尝试为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-next-line no-use-before-define
var thing = new Thing();
或者使用单行语法:
var thing = new Thing(); // eslint-disable-line no-use-before-define
查看eslint文档
使现代化
ESlint现在已经更新了一种更好的禁用单行的方法,参见@gobballLogic的优秀答案。
旧答案:
您可以使用以下选项
/*eslint-disable */
//suppress all warnings between comments
alert('foo');
/*eslint-enable */
它稍微隐藏在文档的“配置规则”部分中;
要禁用整个文件的警告,可以在文件顶部添加注释,例如。
/*eslint eqeqeq:0*/
或者对于下一行的多次忽略,使用逗号将规则字符串化
// eslint-disable-next-line class-methods-use-this, no-unused-vars
要禁用特定行上的所有规则,请执行以下操作:
alert('foo'); // eslint-disable-line
要对以下文件的其余部分禁用单个规则:
/* eslint no-undef: "off"*/
const uploadData = new FormData();