Skip to content

Instantly share code, notes, and snippets.

@przeprogramowani
Created May 10, 2021 09:54
Show Gist options
  • Select an option

  • Save przeprogramowani/5ba41bf7f44811181e82773c6ee2a4ec to your computer and use it in GitHub Desktop.

Select an option

Save przeprogramowani/5ba41bf7f44811181e82773c6ee2a4ec to your computer and use it in GitHub Desktop.
VS Code configuration for ESLint's format and fix on save
{
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"eslint.alwaysShowStatus": true,
"eslint.validate": [
"javascript",
"html"
],
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment