eslint exclude file code example
Example 1: eslint ignore file rule
/* eslint-disable no-alert, no-console */
alert('foo');
console.log('bar');
/* eslint-enable no-alert, no-console */
Example 2: disable eslint
/* eslint-disable */
//Put this comment ath the top of the file
Example 3: eslint ignore javascript
var thing = new Thing(); // eslint-disable-line no-use-before-define
thing.sayHello();
function Thing() {
this.sayHello = function() { console.log("hello"); };
}