Created
March 23, 2020 00:44
-
-
Save diegomais/d106f96bfe265f5aa6e4581c05e21a6f to your computer and use it in GitHub Desktop.
Visual Studio Code Preferences
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
{ | |
"breadcrumbs.enabled": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
"editor.formatOnSave": true, | |
"editor.parameterHints.enabled": true, | |
"editor.renderLineHighlight": "gutter", | |
"editor.rulers": [80,120], | |
"editor.tabSize": 2, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
}, | |
"eslint.packageManager": "yarn", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.compactFolders": false, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
".prettierrc": "json" | |
}, | |
"[javascript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"[javascriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"[typescript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"[typescriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"javascript.suggest.autoImports": false, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"terminal.integrated.fontSize": 14, | |
"typescript.suggest.autoImports": false, | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"workbench.activityBar.visible": true, | |
"workbench.colorTheme": "Dracula", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment