- Color Highlight
- Dracula Official
- EditorConfig for VS Code
- ESLint
- MaterialIcon Theme
- Rocketseat React Native
- Rocketseat ReactJS
Last active
October 16, 2019 23:41
-
-
Save andyalmeida/049c17ee92d2b2af40b5b61e8e4b1a2f to your computer and use it in GitHub Desktop.
VSCode Configuration
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
| { | |
| //Theme | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.iconTheme": "material-icon-theme", | |
| //Font config | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 24, | |
| //Editor configs | |
| "editor.rulers": [80, 120], //vertical lines to remember breaking line | |
| "editor.tabSize": 2, | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.parameterHints.enabled": false, | |
| "editor.formatOnSave": false, | |
| "breadcrumbs.enabled": true, | |
| "terminal.integrated.fontSize": 14, | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx" | |
| }, | |
| "eslint.autoFixOnSave": true, | |
| "eslint.validate": [ | |
| { | |
| "language": "javascript", | |
| "autoFix": true | |
| }, | |
| { | |
| "language": "javascriptreact", | |
| "autoFix": true | |
| }, | |
| { | |
| "language": "typescript", | |
| "autoFix": true | |
| }, | |
| { | |
| "language": "typescriptreact", | |
| "autoFix": true | |
| }, | |
| ], | |
| //JSConfig | |
| "javascript.updateImportsOnFileMove.enabled": "never", | |
| "javascript.suggest.autoImports": false, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment