Skip to content

Instantly share code, notes, and snippets.

@the-spanish-guy
Last active March 17, 2021 00:19
Show Gist options
  • Save the-spanish-guy/c8a7d21b7c37395d1f5db56d971ce04d to your computer and use it in GitHub Desktop.
Save the-spanish-guy/c8a7d21b7c37395d1f5db56d971ce04d to your computer and use it in GitHub Desktop.
Algumas configurações do VsCode
{
"todo-tree.tree.showScanModeButton": false,
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.tabSize": 2,
"editor.fontFamily": "'Fira Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.rulers": [80, 120],
"editor.parameterHints.enabled": true,
"window.menuBarVisibility": "hidden",
"explorer.compactFolders": false,
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
//emmet
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
// bracket-pair-colorizer-2 config
"bracket-pair-colorizer-2.forceUniqueOpeningColor": true,
"bracket-pair-colorizer-2.colors": [
"Gold",
"Orchid",
"LightSkyBlue",
"#c94965",
"#21cfc4",
"#d0f75c"
],
"bracket-pair-colorizer-2.showBracketsInGutter": true,
"bracket-pair-colorizer-2.scopeLineCSS": [
"borderStyle : solid",
"borderWidth : 1px",
"borderColor : {color}",
"opacity: 0.8"
],
//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",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"database.js": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "javascript",
"autoFix": true,
},
{
"language": "javascriptreact",
"autoFix": true,
},
{
"language": "typescript",
"autoFix": true,
},
{
"language": "typescriptreact",
"autoFix": true,
},
],
"editor.codeActionsOnSave": {
"source.fixAll": true,
//"source.organizeImports": true
},
"editor.formatOnSave": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.colorTheme": "Omni",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"tabnine.experimentalAutoImports": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.ignoreTrimWhitespace": false,
"javascript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment