Last active
February 8, 2022 00:26
-
-
Save miroswd/41bf3e1e659841d1407dac1c888888c5 to your computer and use it in GitHub Desktop.
VSCode properties
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
{ | |
// Material Icon | |
"workbench.iconTheme": "material-icon-theme", | |
"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" | |
}, | |
// Referente à tipografia | |
"editor.tabSize":2, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
// Distribuição de pastas | |
"explorer.compactFolders": false, | |
"workbench.editor.labelFormat": "short", | |
"breadcrumbs.enabled": true, | |
"editor.renderLineHighlight": "gutter", | |
"editor.rulers": [120,160], | |
"extensions.ignoreRecommendations": true, | |
"prettier.eslintIntegration":true, | |
// Impede a importação dos arquivos, quando o arquivo é alterado de pasta | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
// Removendo dicas | |
"editor.parameterHints.enabled": false, | |
// Auto increment | |
"emmet.includeLanguages": { | |
"njk": "html", | |
"javascript":"javascriptreact" | |
}, | |
// ESlint | |
"[javascript]": { | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint":true | |
} | |
}, | |
"[typescript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
} | |
}, | |
"[typescriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
} | |
}, | |
// Prisma | |
"[prisma]": { | |
"editor.defaultFormatter": "Prisma.prisma", | |
"editor.formatOnSave": true, | |
}, | |
// Validar JavaScript | |
"js/ts.implicitProjectConfig.checkJs": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"workbench.startupEditor": "newUntitledFile", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.donotVerifyTags": true, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.colorTheme": "Tokyo Night" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// theme settings
"workbench.colorTheme": "Dark Lemon",
"workbench.colorCustomizations" : {
"panel.border": "#f7e71240",
"sideBar.border": "#f7e71240",
}