Skip to content

Instantly share code, notes, and snippets.

@whidy
Created October 25, 2019 08:02
Show Gist options
  • Save whidy/5becc52b7a5aea00781ccfad555bfed0 to your computer and use it in GitHub Desktop.
Save whidy/5becc52b7a5aea00781ccfad555bfed0 to your computer and use it in GitHub Desktop.
Vue.js develop with VSCode workspace settings
{
"eslint.enable": true,
"editor.formatOnSave": false,
"files.eol": "\n",
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"html.format.enable": false,
"javascript.format.enable": false,
"prettier.eslintIntegration": true,
"eslint.alwaysShowStatus": true,
"vetur.format.defaultFormatter.css": "prettier"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment