Answers for "how to allow rules in eslint"

0

disable eslint

/* eslint-disable */

//Put this comment ath the top of the file
Posted by: Guest on May-23-2020
-1

eslint ignore javascript

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

function Thing() {

     this.sayHello = function() { console.log("hello"); };

}
Posted by: Guest on March-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language