Skip to content

Instantly share code, notes, and snippets.

@joaoazevedoJS
Last active September 10, 2020 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaoazevedoJS/b98788e9cfc4c07b0867848610f822e8 to your computer and use it in GitHub Desktop.
Save joaoazevedoJS/b98788e9cfc4c07b0867848610f822e8 to your computer and use it in GitHub Desktop.
{
"terminal.integrated.fontSize": 14,
"workbench.preferredHighContrastColorTheme": "Dracula",
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"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": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.rulers": [80, 120],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
"window.zoomLevel": 0,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
// "gitlens.codeLens.recentChange.enabled": false,
// "gitlens.codeLens.authors.enabled": false,
// "gitlens.codeLens.enabled": false,
"git.enableSmartCommit": true,
"terminal.integrated.shell.osx": "/bin/zsh",
// "liveshare.featureSet": "insiders",
"typescript.tsserver.log": "verbose",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"liveServer.settings.donotShowInfoMsg": true,
// "material-icon-theme.activeIconPack": "nest",
"screencastMode.onlyKeyboardShortcuts": true,
"material-icon-theme.files.associations": {
"app.ts": "Nodejs_alt",
"app.js": "Nodejs_alt",
"server.ts": "Nodejs_alt",
"server.js": "Nodejs_alt",
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},
"material-icon-theme.folders.associations": {
"migrations": "tools",
"seeds": "Meta",
"practice": "Vm",
"interfaces": "Delta",
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe"
},
"code-runner.clearPreviousOutput": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment