关闭特定线条的eslint规则
为了关闭JSHint中特定行的linting规则,我们使用以下规则:
/* jshint ignore:start*/
$scope.someVar = ConstructorFunction();
/* jshint ignore:end */
我一直在试图找到eslint的上述等价物。
您现在可以使用单行语法:
var thing = new Thing(); // eslint-disable-line no-use-before-define
thing.sayHello();
function Thing() {
this.sayHello = function() { console.log("hello"); };
}
或者,如果您不想对实际代码的同一行发表评论,则可以禁用下一行:
// eslint-disable-next-line no-use-before-define
var thing = new Thing();
请求的文档链接:http://eslint.org/docs/user-guide/configuring.html#configuring-rules
您可以使用以下内容
/*eslint-disable */
//suppress all warnings between comments
alert('foo');
/*eslint-enable */
它稍微隐藏了文档的“配置规则”部分;
要为整个文件禁用警告,可以在文件顶部包含注释,例如
/*eslint eqeqeq:0*/
更新
现在ESlint已经通过更好的方式更新了禁用单行的方法,请参阅@ goofballLogic的出色答案。
您还可以通过在启用(打开)和禁用(关闭)块中指定它们来禁用特定的规则/规则 (而不是全部):
/* eslint-disable no-alert, no-console */
alert('foo');
console.log('bar');
/* eslint-enable no-alert */
通过上面的@ goofballMagic链接:http://eslint.org/docs/user-guide/configuring.html#configuring-rules
链接地址: http://www.djcxy.com/p/73409.html