提问者:小点点

关闭特定行的eslint规则


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

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

我一直在尝试为Eslint找到与上述相同的产品。


共1个答案

匿名用户

禁用下一行:

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

或者使用单行语法:

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

参见eslint文档