Skip to content

Instantly share code, notes, and snippets.

@gstvds
Last active October 16, 2020 00:49
Show Gist options
  • Select an option

  • Save gstvds/a89ec19481ea07fd8eef018d5d85af1e to your computer and use it in GitHub Desktop.

Select an option

Save gstvds/a89ec19481ea07fd8eef018d5d85af1e to your computer and use it in GitHub Desktop.
{
// VSCode configuration
"workbench.colorTheme": "Dracula",
"editor.fontSize": 16,
"editor.lineHeight": 26,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"editor.rulers": [
120
],
"editor.tabSize": 2,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.renderLineHighlight": "gutter",
"window.zoomLevel": 0,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true
},
// ESLint/Prettier configuration
"eslint.packageManager": "yarn",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
// Auto import configuration
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
// Terminal configuration
"terminal.integrated.fontSize": 14,
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.rendererType": "dom",
// workbench/icons configuration
"workbench.startupEditor": "newUntitledFile",
"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",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
"methods": "middleware",
"workflows": "ci",
".credentials": "secure",
".prod.credentials": "secure"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},
"material-icon-theme.folders.color": "#26a69a",
"material-icon-theme.saturation": 1,
"material-icon-theme.activeIconPack": "react_redux",
"extensions.ignoreRecommendations": false,
// Emmet configuration
"emmet.syntaxProfiles": {
"javascript": "jsx",
"nunjucks": "html"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"nunjucks": "html"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.tsserver.log": "verbose",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
// Git configuration
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
// Bracket Pair Colorizer configuration
"bracket-pair-colorizer-2.forceUniqueOpeningColor": true,
"bracket-pair-colorizer-2.colorMode": "Consecutive",
"bracket-pair-colorizer-2.showHorizontalScopeLine": true,
"bracket-pair-colorizer-2.showVerticalScopeLine": true,
"bracket-pair-colorizer-2.colors": [
"#ff79c6",
"#bd93f9",
"#ff5555",
"#50fa7b",
"#8be9fd"
],
// Colorize configuration
"colorize.languages": ["javascript", "typescript", "javascriptreact", "typescriptreact", "json", "html", "css"],
// Default formatters
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
// live share configuration
"liveshare.allowGuestTaskControl": true,
"liveshare.allowGuestDebugControl": true,
// GIST ID for Sync
"sync.gist": "17bbbd7ccea4e0d2678a33a5c33cba4d",
"vsicons.dontShowNewVersionMessage": true,
"diffEditor.ignoreTrimWhitespace": false,
// cSpell configuration
"cSpell.language": "en,pt-BR",
"cSpell.userWords": [
"ADMINSDK",
"Additionals",
"Adittional",
"Appengine",
"CDRs",
"INCONSISTENCE",
"Instabug",
"Pareteum",
"RENOVACAO",
"Retentativa",
"SENDGRID",
"TELECALL",
"TEUM",
"Uxcam",
"ZENDESK",
"ativacao",
"bleg",
"cagetories",
"calldirectionid",
"cancelation",
"despausar",
"dtos",
"enddate",
"esnext",
"firestore",
"fluketmc",
"gcloud",
"iccid",
"iccids",
"microsservi",
"microsserviço",
"microsserviços",
"middlewares",
"mkdir",
"msisdn",
"mundi",
"mvno",
"npmrc",
"o",
"originalname",
"os",
"portabilities",
"reactnative",
"resetar",
"signin",
"signup",
"simcard",
"startdate",
"subscriptionid",
"subservicetypeid",
"topup",
"tsyringe",
"typeorm",
"typesafe",
"unform",
"uuidv",
"videocall"
],
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"tabnine.experimentalAutoImports": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment