Created
August 8, 2020 12:28
-
-
Save DenisMedeirosSDK/153b05acbc8cb50674eb53f32eb634ca to your computer and use it in GitHub Desktop.
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
{ | |
//Themes | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "Omni", | |
//Fonts | |
"editor.fontSize": 14, | |
"editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.fontLigatures": true, | |
// Editor config | |
"editor.tabSize": 2, | |
"editor.rulers": [80, 120], | |
"editor.minimap.enabled": false, | |
"editor.trimAutoWhitespace": true, | |
"editor.renderFinalNewline": true, | |
// Eslint | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true, | |
}, | |
"eslint.options": { "configFile": "**/.eslintrc.json" }, | |
//Terminal | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
//Material-icon | |
"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" | |
}, | |
"material-icon-theme.files.associations": { | |
"ormconfig.json":"database", | |
"tsconfig.json": "tune", | |
"*.html":"html", | |
"*.db":"database" | |
}, | |
//Others | |
"sync.quietSync": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"git.enableSmartCommit": true, | |
"git.autofetch": true, | |
"cSpell.userWords": [ | |
"Contato", | |
"Linkedin" | |
], | |
"explorer.confirmDelete": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment