Created
February 9, 2019 08:34
-
-
Save danielturus/c6487e87f23864f6c1be8e73ed6f361e to your computer and use it in GitHub Desktop.
VSCode settings
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
{ | |
"editor.tabSize": 4, | |
"editor.detectIndentation": false, | |
"telemetry.enableTelemetry": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"emmet.includeLanguages": { | |
"vue-html": "html" | |
}, | |
"explorer.confirmDelete": false, | |
"workbench.colorTheme": "Monokai", | |
"window.zoomLevel": 0, | |
"explorer.confirmDragAndDrop": false, | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"prettier.singleQuote": true, | |
"prettier.semi": false, | |
"prettier.useTabs": true, | |
"prettier.tabWidth": 8, | |
"eslint.validate": ["javascript", "vue"], | |
"vetur.format.defaultFormatterOptions": { | |
"prettier": { | |
// Prettier option here | |
"semi": false, | |
"singleQuote": true | |
}, | |
"prettyhtml": { | |
"printWidth": 100, | |
"singleQuote": false, | |
"wrapAttributes": true, | |
"sortAttributes": true | |
} | |
}, | |
"vetur.format.defaultFormatter.js": "prettier-eslint", | |
"vetur.format.options.tabSize": 4 | |
} |
Author
danielturus
commented
May 25, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment