Skip to content

Instantly share code, notes, and snippets.

@devjin0617
Created September 4, 2019 03:21
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 devjin0617/36664a24a1ce6933952b0164962faa39 to your computer and use it in GitHub Desktop.
Save devjin0617/36664a24a1ce6933952b0164962faa39 to your computer and use it in GitHub Desktop.
vscode vue lint & autofix setting file
{
"eslint.autoFixOnSave": true,
"editor.formatOnSave": true,
"files.associations": {
"*.vue": "vue"
},
"eslint.validate": [
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
}
],
"vetur.format.defaultFormatter.js": "none"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment