Last active
July 29, 2019 17:15
-
-
Save Ruttmann/f98c27de3ee3b9d8a8ff1eafa63aba26 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
{ | |
"window.titleBarStyle": "custom", | |
"window.zoomLevel": 0, | |
"workbench.startupEditor": "none", | |
"workbench.colorTheme": "Dracula", | |
"workbench.iconTheme": "material-icon-theme", | |
"css.colorDecorators.enable": false, | |
"editor.minimap.enabled": false, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13, | |
"editor.cursorStyle": "line", | |
"editor.formatOnSave": false, | |
"editor.rulers": [80, 120], | |
"editor.lineNumbers": "on", | |
"editor.tabSize": 2, | |
// "editor.wordWrap": "wordWrapColumn", | |
// "editor.wordWrapColumn": 80, | |
"editor.parameterHints.enabled": false, | |
"editor.renderWhitespace": "boundary", | |
"editor.renderLineHighlight": "gutter", | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": false | |
}, | |
"terminal.integrated.fontSize": 12, | |
"terminal.integrated.rendererType": "dom", | |
"emmet.syntaxProfiles": { | |
//Autocomplete JS | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"javascript.suggest.autoImports": false, | |
"breadcrumbs.enabled": true, | |
"breadcrumbs.filePath": "on", | |
"explorer.confirmDragAndDrop": false, | |
"prettier.eslintIntegration": true, | |
"eslint.packageManager": "yarn", | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
{ | |
"language": "javascript", | |
"autoFix": true | |
}, | |
{ | |
"language": "javascriptreact", | |
"autoFix": true | |
}, | |
// { | |
// "language": "typescript", | |
// "autoFix": true | |
// }, | |
// { | |
// "language": "typescriptreact", | |
// "autoFix": true | |
// } | |
], | |
"liveServer.settings.donotShowInfoMsg": true, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"explorer.confirmDelete": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment