为了在JSHint中关闭特定行的掉毛规则,我们使用以下规则:
/* jshint ignore:start*/ $scope.someVar = ConstructorFunction(); /* jshint ignore:end */
我一直在尝试找到与以上相同的内容。
您现在可以使用单行语法:
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();