Answers for "how to run eslint on all files"

4

eslint ignore

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

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

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

eslint ignore

/* eslint-disable */

alert('foo');

/* eslint-enable */
Posted by: Guest on September-03-2020
-1

how to run eslint on the whole project

# cd to your root project folder
eslint "./**" --fix
Posted by: Guest on October-14-2020
-1

npx eslint src

yarn lint-fix
Posted by: Guest on June-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language