installing eslint globally
npm install -g eslint
installing eslint globally
npm install -g eslint
install eslint
$ npm install eslint --save-dev
$ ./node_modules/.bin/eslint --init
install eslint
#install globally
npm i -g eslint
#install in project
npm install eslint --save-dev
eslint install command
npm install eslint --save-dev
# or
yarn add eslint --dev
node eslint
// package.json
"devDependencies": {
"eslint": "^7.2.0",
"eslint-plugin-node": "^11.1.0"
}
// .eslintrc.json
{
"extends": [
"eslint:recommended",
"plugin:node/recommended"
],
"parserOptions": {
// Only ESLint 6.2.0 and later support ES2020.
"ecmaVersion": 2020
},
"rules": {
"node/exports-style": ["error", "module.exports"],
"node/file-extension-in-import": ["error", "always"],
"node/prefer-global/buffer": ["error", "always"],
"node/prefer-global/console": ["error", "always"],
"node/prefer-global/process": ["error", "always"],
"node/prefer-global/url-search-params": ["error", "always"],
"node/prefer-global/url": ["error", "always"],
"node/prefer-promises/dns": "error",
"node/prefer-promises/fs": "error"
}
}
Install eslint
yarn add eslint -D
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us