Last active
May 19, 2020 21:49
-
-
Save rafaelpivatto/b4d77ca681941d68ceed6f1c7ca12c3f to your computer and use it in GitHub Desktop.
My VSCode settings.json
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
{ | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.rulers": [80, 120], | |
"editor.renderLineHighlight": "gutter", | |
"editor.tabSize": 2, | |
"editor.lineHeight": 20, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"breadcrumbs.enabled": true, | |
"window.zoomLevel": 1, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": true, | |
"editor.formatOnSave": true, | |
"[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 | |
} | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"explorer.compactFolders": false, | |
"workbench.editor.labelFormat": "short", | |
"extensions.ignoreRecommendations": true, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"prettier.jsxSingleQuote": true, | |
"prettier.singleQuote": true, | |
"material-icon-theme.activeIconPack": "nest", | |
"material-icon-theme.folders.associations": { | |
"infra": "app", | |
"entities": "class", | |
"schemas": "class", | |
"typeorm": "database", | |
"repositories": "mappings", | |
"http": "container", | |
"migrations": "tools", | |
"modules": "components", | |
"implementations": "core", | |
"dtos": "typescript", | |
"fakes": "mock", | |
"websockets": "pipe", | |
"protos": "pipe", | |
"grpc": "pipe" | |
}, | |
"material-icon-theme.files.associations": { | |
"ormconfig.json": "database", | |
"tsconfig.json": "tune", | |
"*.proto": "3d" | |
}, | |
"workbench.colorTheme": "Dracula" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment