Skip to content

Instantly share code, notes, and snippets.

@constgen
Created August 2, 2017 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save constgen/b95309d7cf6998c233ccede158b24112 to your computer and use it in GitHub Desktop.
Save constgen/b95309d7cf6998c233ccede158b24112 to your computer and use it in GitHub Desktop.
Language specific VSCode config
{
"[javascript]": {
"editor.tabSize": 2,
"editor.insertSpaces": true
},
"[vue]": {
"editor.tabSize": 2,
"editor.insertSpaces": true
},
"eslint.options": {
"extensions": [".html", ".js", ".vue", ".jsx"]
},
"eslint.validate": [
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment