Skip to content

Instantly share code, notes, and snippets.

@Josimar16
Last active January 17, 2022 19:22
Show Gist options
  • Save Josimar16/6da4b84d669f34c026aa2f22aa9a1254 to your computer and use it in GitHub Desktop.
Save Josimar16/6da4b84d669f34c026aa2f22aa9a1254 to your computer and use it in GitHub Desktop.
Configuração do vscode pelo settings user
{
"sync.gist": "67b637bff280630d56be647bb2c5db38",
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "material-icon-theme",
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 26,
"editor.fontWeight": "500",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true
},
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": true,
"explorer.confirmDragAndDrop": true,
"explorer.confirmDelete": true,
"editor.rulers": [
80,
120
],
"editor.semanticHighlighting.enabled": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json",
"*.tsx": "typescriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"git.enableSmartCommit": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"liveshare.featureSet": "insiders",
"typescript.tsserver.log": "off",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"liveServer.settings.donotShowInfoMsg": true,
"material-icon-theme.activeIconPack": "nest",
"screencastMode.onlyKeyboardShortcuts": true,
"material-icon-theme.folders.color": "#385c7c",
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"domain": "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",
"providers": "include",
"subscribers": "messages",
"useCases": "controller",
"kafka": "scripts",
"mappers": "meta",
"_shared": "shared",
"eslint-config": "tools",
"datasources": "database",
"decorators": "guard",
"resolvers": "other",
"moduleprovider": "global",
"schemaprovider": "graphql",
"external": "include",
"github": "github",
"presenter": "layout",
"stores": "redux-store",
"reducers": "redux-reducer",
"actions": "redux-actions",
"*": "core",
"kube": "kubernetes"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.controller.ts": "nest-controller",
"*.module.ts": "nest-module",
"*.service.ts": "nest-service",
"*.middleware.ts": "nest-middleware",
"*.filter.ts": "nest-filter",
"*.pipe.ts": "nest-pipe",
"*.gateway.ts": "nest-gateway",
"*.decorator.ts": "nest-decorator",
"*.guard.ts": "nest-guard",
"*.resolver.ts": "graphql",
"*.input.ts": "graphql",
"*.config.ts": "settings",
"routes.ts": "routing",
"*.routes.ts": "routing",
"swagger.json": "lib",
"*.webpack.js": "webpack",
"rootReducer.ts": "redux-store",
"reducer.ts": "redux-reducer",
"actions.ts": "redux-action",
},
"window.menuBarVisibility": "compact",
"workbench.colorTheme": "Omni",
"git.autofetch": true,
"tabnine.experimentalAutoImports": true,
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
"cSpell.language": "en,pt",
"editor.suggestSelection": "first",
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80,
120
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
// "editor.formatOnPaste": true,
// "editor.formatOnSave": true,
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cSpell.userWords": [
"Dataloader",
"agroupment",
"chakra",
"middlewares",
"prefetch",
"rocketseat"
],
"workbench.productIconTheme": "fluent-icons",
"terminal.integrated.showExitAlert": false,
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"splitHTMLAttributes.closingBracketOnNewLine": true,
"[json]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"terminal.integrated.tabs.enabled": true,
"editor.minimap.maxColumn": 150,
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"editor.inlineSuggest.enabled": true,
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment