Created
February 22, 2017 12:49
-
-
Save gn-spawn/bee4640f73c3308dc29429c399829e9a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
"files.autoSave": "afterDelay", | |
"editor.fontSize": 14, | |
"typescript.check.tscVersion": false, | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
// HTML, JavaScript, Vue | |
"files.associations": { | |
"*.vue" : "vue" | |
}, | |
// cssのemmetをvueでできるように | |
"emmet.syntaxProfiles": { | |
"vue" : "css" | |
}, | |
"eslint.enable": true, | |
"eslint.options": { | |
"editor.tabSize": 2, | |
"eslint.options": { | |
"extensions": [".js", ".vue"] | |
} | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"html", | |
"vue" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment