Answers for "how to ignore file in eslint"

20

disable eslint for line

alert('foo'); // eslint-disable-line

// eslint-disable-next-line
alert('foo');
Posted by: Guest on May-26-2020
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 eslint directory

// to disable the whole folder or multiple files,
// you can create a file .eslintignore
// and fill it similarly to .gitignore
Posted by: Guest on February-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language