Created
April 18, 2019 11:57
-
-
Save androidfanatic/76c5d611f997caaa2ad30753035fc5cc to your computer and use it in GitHub Desktop.
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
{ | |
"workbench.statusBar.visible": false, | |
"workbench.activityBar.visible": false, | |
"window.menuBarVisibility": "toggle", | |
"workbench.editor.enablePreview": false, | |
"telemetry.enableTelemetry": false, | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"editor.lineHeight": 26, | |
"editor.fontLigatures": true, | |
"explorer.decorations.badges": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.renderWhitespace": "none", | |
"workbench.sideBar.location": "left", | |
"zenMode.fullScreen": false, | |
"zenMode.hideTabs": false, | |
"editor.minimap.enabled": false, | |
"emmet.includeLanguages": { | |
"vue-html": "html", | |
}, | |
"explorer.confirmDelete": false, | |
"window.zoomLevel": 0, | |
"php.suggest.basic": true, | |
"git.enableSmartCommit": true, | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#00BCD4", | |
"list.activeSelectionForeground": "#00BCD4", | |
"list.inactiveSelectionForeground": "#00BCD4", | |
"list.highlightForeground": "#00BCD4", | |
"scrollbarSlider.activeBackground": "#00BCD450", | |
"editorSuggestWidget.highlightForeground": "#00BCD4", | |
"textLink.foreground": "#00BCD4", | |
"progressBar.background": "#00BCD4", | |
"pickerGroup.foreground": "#00BCD4", | |
"tab.activeBorder": "#00BCD4", | |
"notificationLink.foreground": "#00BCD4" | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"extensions.ignoreRecommendations": true, | |
// format | |
"files.autoSave": "off", | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"eslint.autoFixOnSave": true, | |
"eslint.alwaysShowStatus": false, | |
"eslint.enable": true, | |
"eslint.run": "onSave", | |
"eslint.validate": [ | |
{ "language": "vue", "autoFix": true }, | |
{ "language": "html", "autoFix": true }, | |
{ "language": "javascript", "autoFix": true } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment