Skip to content

Instantly share code, notes, and snippets.

@leejunhui
Created September 14, 2018 05:12
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 leejunhui/4275ee1d4825d6591a9dbfe35a000687 to your computer and use it in GitHub Desktop.
Save leejunhui/4275ee1d4825d6591a9dbfe35a000687 to your computer and use it in GitHub Desktop.
vscode beautify config
// Place your settings in this file to overwrite the default settings
{
"editor.tabSize": 2,
"files.associations": {
"*.vue": "vue"
},
"workbench.colorTheme": "Material Theme",
"window.zoomLevel": 1,
"workbench.panel.defaultLocation": "bottom",
"explorer.confirmDragAndDrop": false,
"editor.quickSuggestions": {
"strings": true
},
"element-helper.version": "2.3",
"editor.snippetSuggestions": "top",
"beautify.language": {
"js": {
"type": [
"javascript",
"json"
],
"filename": [
".jshintrc",
".jsbeautify"
]
},
"css": [
"css",
"scss"
],
"html": [
"htm",
"html",
"vue"
]
},
"extensions.ignoreRecommendations": true,
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"vetur.validation.template": false,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"wrap_attributes": "force-aligned"
},
"eslint.enable": false,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#84FFFF",
"list.activeSelectionForeground": "#84FFFF",
"list.inactiveSelectionForeground": "#84FFFF",
"list.highlightForeground": "#84FFFF",
"scrollbarSlider.activeBackground": "#84FFFF50",
"editorSuggestWidget.highlightForeground": "#84FFFF",
"textLink.foreground": "#84FFFF",
"progressBar.background": "#84FFFF",
"pickerGroup.foreground": "#84FFFF",
"tab.activeBorder": "#84FFFF",
"notificationLink.foreground": "#84FFFF"
},
"materialTheme.cache.workbench.settings": {
"accent": "Sky",
"accentPrevious": "Blue",
"themeColours": "Palenight High Contrast"
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"python.linting.pylintEnabled": false,
"gitlens.historyExplorer.enabled": true,
"files.autoSave": "off",
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
{
"language": "vue",
"autoFix": true
}
],
"eslint.options": {
"plugins": [
"html"
]
},
"eslint.autoFixOnSave": true,
"editor.fontSize": 14,
"breadcrumbs.enabled": true,
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment