Skip to content

Instantly share code, notes, and snippets.

@tahq69
Last active November 17, 2018 08:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tahq69/37d0693454f4683520042527e5c9d754 to your computer and use it in GitHub Desktop.
Save tahq69/37d0693454f4683520042527e5c9d754 to your computer and use it in GitHub Desktop.
vscode settings for vuejs development
// Place your settings in this file to overwrite the default settings
{
"files.eol": "\n",
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Monokai",
"explorer.openEditors.visible": 0,
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"editor.rulers": [80,100],
"window.zoomLevel": 1,
"html.format.maxPreserveNewLines": 1,
"search.exclude": {"**/node_modules": true,"**/bower_components": true},
"importCost.typescriptExtensions": ["\\.vue$"],
"vetur.validation.template": true,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"indent_size": 2,
"wrap_attributes": "force-aligned",
"brace-style": "none",
"content_unformatted": ["pre", "code", "code-sample"]
}
},
"files.associations": {
"*.vue": "vue"
},
"[vue]": {},
"vsicons.dontShowNewVersionMessage": true,
"breadcrumbs.enabled": true,
"javascript.referencesCodeLens.enabled": true,
"typescript.implementationsCodeLens.enabled": true,
"typescript.referencesCodeLens.enabled": true,
"php.validate.executablePath": "D:/Code/laragon/laragon/bin/php/php-7.1.12-Win32-VC14-x64/php.exe",
"php.suggest.basic": false,
"cSpell.enabledLanguageIds": [
"asciidoc",
"c",
"cpp",
"csharp",
"css",
"go",
"handlebars",
"html",
"jade",
"javascript",
"javascriptreact",
"json",
"latex",
"less",
"markdown",
"php",
"plaintext",
"python",
"pub",
"restructuredtext",
"rust",
"scss",
"text",
"typescript",
"typescriptreact",
"yml",
"vue"
],
"cSpell.userWords": [
"nbsp"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment