Skip to content

Instantly share code, notes, and snippets.

@Samuell1
Last active August 2, 2017 12:46
Show Gist options
  • Save Samuell1/099fa28287616f75367320f5463af41b to your computer and use it in GitHub Desktop.
Save Samuell1/099fa28287616f75367320f5463af41b to your computer and use it in GitHub Desktop.
{
"editor.minimap.enabled": true,
"files.associations": {
"*.vue": "vue"
},
"eslint.enable": 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
}
],
// Run the linter on save (onSave) or on type (onType)
"eslint.run": "onSave",
"eslint.autoFixOnSave": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment