Skip to content

Instantly share code, notes, and snippets.

@bino-faata
Last active October 27, 2020 19:47
Show Gist options
  • Save bino-faata/0caad58e718c12a27177249ab2ec94fe to your computer and use it in GitHub Desktop.
Save bino-faata/0caad58e718c12a27177249ab2ec94fe to your computer and use it in GitHub Desktop.
NPM, vscode, eslint, etc settings
npm init -y
npm i -D eslint eslint-config-standard eslint-plugin-import eslint-plugin-node eslint-plugin-promise eslint-plugin-standard
Create .eslintrc.js:
module.exports = {
"extends": "standard"
};
In VS Code, Ctrl + Shift + X
Search ESLint
Install ESLint
Restart VS Code
@bino-faata
Copy link
Author

Eslint AirBnB

npm init -y
npm i -D eslint eslint-config-airbnb-base eslint-plugin-import

Create .eslintrc.js:

module.exports = {
    "extends": "airbnb-base"
};

In VS Code, Ctrl + Shift + X
Search ESLint
Install ESLint
Restart VS Code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment