Skip to content

Instantly share code, notes, and snippets.

@big-kahuna-burger
Created September 2, 2019 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save big-kahuna-burger/869268f82e8ebb37c1f35db93291a079 to your computer and use it in GitHub Desktop.
Save big-kahuna-burger/869268f82e8ebb37c1f35db93291a079 to your computer and use it in GitHub Desktop.
standard setup
{
// Prevents VS Code from formatting JavaScript with the default linter
"javascript.format.enable": false,
// Prevents VS Code linting JavaScript with the default linter
"javascript.validate.enable": false,
// Lints with Standard JS
"standard.enable": true,
// Format files with Standard whenever you save the file
"standard.autoFixOnSave": true,
// Files to validate with Standard JS
"standard.validate": [
"javascript",
"javascriptreact"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment