Skip to content

Instantly share code, notes, and snippets.

@TiSiE
Last active December 3, 2019 16:18
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 TiSiE/be6c4bce0a939fb4c906d5fb4e729760 to your computer and use it in GitHub Desktop.
Save TiSiE/be6c4bce0a939fb4c906d5fb4e729760 to your computer and use it in GitHub Desktop.
Setup vscode to lint and autofix vue/quasar
{
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
]
}
{
"eslint.options": {
"configFile": "/home/mathias/projects/cross-solution.de/.eslintrc.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment