Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save katharinepadilha/6c07c23c91f39c3d3bfcb1dfb2200786 to your computer and use it in GitHub Desktop.
Save katharinepadilha/6c07c23c91f39c3d3bfcb1dfb2200786 to your computer and use it in GitHub Desktop.
Eslint extension + Standard + VSCode configuration
Donwload ESLint and Prettier extensions from VSCode store
Place the code bellow in your Settings.json
{
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"[javascript]": {
"editor.formatOnSave": false
},
"emmet.triggerExpansionOnTab": true,
"editor.tabCompletion": "on",
"eslint.options": {
"configFile": "./node_modules/standard/eslintrc.json",
"parser": "babel-eslint"
},
"eslint.autoFixOnSave": true,
"eslint.run": "onSave",
"eslint.alwaysShowStatus": true,
"javascript.validate.enable": false,
"prettier.eslintIntegration": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment