Answers for "ignore a lint rule for a file"

4

eslint ignore file rule

/* eslint-disable no-alert, no-console */

alert('foo');
console.log('bar');

/* eslint-enable no-alert, no-console */
Posted by: Guest on August-17-2020
0

//disable-linter-line

// eslint-disable-next-line no-console
console.log('eslint will ignore the no-console on this line of code');

// OR >>
console.log('eslint will ignore the no-console on this line of code'); // eslint-disable-line
Posted by: Guest on December-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language