Skip to content

Instantly share code, notes, and snippets.

@arenac
Created June 2, 2022 20:31
Show Gist options
  • Save arenac/a304843395b698edf5e39fecdd445a39 to your computer and use it in GitHub Desktop.
Save arenac/a304843395b698edf5e39fecdd445a39 to your computer and use it in GitHub Desktop.
{
"files.autoSave": "off",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Dracula",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.rulers": [80, 120],
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"editor.tabSize": 2,
"explorer.compactFolders": false,
"terminal.integrated.fontSize": 14,
"emmet.syntaxProfiles": {
"javascript": "jsx",
"typescript": "tsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"editor.parameterHints.enabled": false,
"breadcrumbs.enabled": true,
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"eslint.packageManager": "yarn",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "js"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"files.exclude": {
".git": true,
".vscode": true,
"**/.git": false
},
"diffEditor.ignoreTrimWhitespace": false,
"extensions.ignoreRecommendations": false,
// "terminal.integrated.shell.linux": "/usr/bin/zsh",
"material-icon-theme.folders.associations": {
"adapters": "contract",
"grpc": "pipe",
"kube": "kubernetes",
"main": "lib",
"websockets": "pipe",
"implementations": "core",
"protos": "pipe",
"entities": "class",
"kafka": "pipe",
"use-cases": "functions",
"migrations": "tools",
"schemas": "class",
"useCases": "functions",
"eslint-config": "tools",
"typeorm": "database",
"_shared": "shared",
"mappers": "meta",
"fakes": "mock",
"modules": "components",
"subscribers": "messages",
"domain": "class",
"protocols": "contract",
"infra": "app",
"view-models": "views",
"presentation": "template",
"dtos": "typescript",
"http": "container",
"providers": "include",
"factories": "class",
"repositories": "mappings"
},
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"material-icon-theme.files.associations": {
"tsconfig.json": "tune",
"*.webpack.js": "webpack",
"*.proto": "3d",
"ormconfig.json": "database"
},
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.minimap.enabled": true,
"editor.renderWhitespace": "none",
"editor.stablePeek": true,
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.perEditorGroup": true,
"workbench.settings.openDefaultSettings": true,
"workbench.editor.openPositioning": "left",
"cSpell.language": "en,pt",
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
"editor.suggestSelection": "first",
"material-icon-theme.activeIconPack": "react_redux",
"eslint.codeAction.showDocumentation": {
"enable": true
},
"eslint.format.enable": true,
"editor.autoClosingBrackets": "always",
"[jsx]": {
"editor.autoClosingBrackets": "always"
},
"editor.inlineSuggest.enabled": true,
"editor.formatOnSave": true,
"tabnine.experimentalAutoImports": true,
"cSpell.userWords": ["miragejs", "nextjs"],
"security.workspace.trust.untrustedFiles": "open",
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": false,
"markdown": false,
"typescript": true,
"typescriptreact": true,
"javascript": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"extensions.autoUpdate": "onlyEnabledExtensions",
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment