Skip to content

Instantly share code, notes, and snippets.

@f3r
Created April 30, 2020 11:49
Show Gist options
  • Save f3r/befd9ebf89738ca136ea06bb7df22351 to your computer and use it in GitHub Desktop.
Save f3r/befd9ebf89738ca136ea06bb7df22351 to your computer and use it in GitHub Desktop.
VSCode Config
// ESLINT + PRETTIER + VETUR
"vetur.validation.template": false,
"vetur.experimental.templateInterpolationService": false,
"javascript.validate.enable": false,
"editor.codeActionsOnSave": {
"source.fixAll": false,
"source.fixAll.eslint": true
},
"editor.formatOnSave": false,
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"eslint.enable": true,
"eslint.options": {
"extensions": [
".html",
".js",
".vue"
]
},
"eslint.validate": [
"html",
"vue",
"javascript",
"javascriptreact"
],
"eslint.run": "onType",
"eslint.format.enable": true,
"[vue]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment