Created
October 25, 2019 08:02
-
-
Save whidy/5becc52b7a5aea00781ccfad555bfed0 to your computer and use it in GitHub Desktop.
Vue.js develop with VSCode workspace settings
This file contains hidden or 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
{ | |
"eslint.enable": true, | |
"editor.formatOnSave": false, | |
"files.eol": "\n", | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
{ | |
"language": "vue", | |
"autoFix": true | |
}, | |
{ | |
"language": "html", | |
"autoFix": true | |
}, | |
{ | |
"language": "javascript", | |
"autoFix": true | |
} | |
], | |
"html.format.enable": false, | |
"javascript.format.enable": false, | |
"prettier.eslintIntegration": true, | |
"eslint.alwaysShowStatus": true, | |
"vetur.format.defaultFormatter.css": "prettier" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment