Skip to content

Instantly share code, notes, and snippets.

@johinsDev
Created June 17, 2019 16:54
Show Gist options
  • Select an option

  • Save johinsDev/00059f862162d5de72a4ff2eb39f2391 to your computer and use it in GitHub Desktop.

Select an option

Save johinsDev/00059f862162d5de72a4ff2eb39f2391 to your computer and use it in GitHub Desktop.
Settings basic for visual studio code
{
"terminal.integrated.fontFamily": "Meslo LG M for Powerline",
"terminal.integrated.fontSize": 12,
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"explorer.openEditors.visible": 0,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.quickSuggestionsDelay": 10,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"workbench.startupEditor": "none",
"editor.fontLigatures": true,
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true
},
"editor.formatOnSave": true,
"window.titleBarStyle": "custom",
"window.zoomLevel": 0,
"css.validate": false, // Disable css built-in lint
"stylelint.enable": true // Enable sytlelint
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment