为特定行关闭eslint规则
为了在JSHint中关闭特定行的掉毛规则,我们使用以下规则:
/* jshint ignore:start*/$scope.someVar = ConstructorFunction();
/* jshint ignore:end */
我一直在尝试找到与以上相同的内容。
回答:
您现在可以使用单行语法:
var thing = new Thing(); // eslint-disable-line no-use-before-definething.sayHello();
function Thing() {
this.sayHello = function() { console.log("hello"); };
}
或者,如果您不想在与实际代码相同的行上添加注释,则可以禁用下一行:
// eslint-disable-next-line no-use-before-definevar thing = new Thing();
以上是 为特定行关闭eslint规则 的全部内容, 来源链接: utcz.com/qa/420394.html