Answers for "how to add eslint"

0

eslint npm install

$ npm install eslint --save-dev
$ ./node_modules/.bin/eslint --init
Posted by: Guest on July-30-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
-1

how to run eslint on the whole project

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language