Skip to content

Instantly share code, notes, and snippets.

@devodla
Created July 8, 2020 02:50
Show Gist options
  • Select an option

  • Save devodla/d23233e5a2c491be7654fb3244de5a2f to your computer and use it in GitHub Desktop.

Select an option

Save devodla/d23233e5a2c491be7654fb3244de5a2f to your computer and use it in GitHub Desktop.
Configuracion de Code
{
"git.autofetch": true,
"workbench.sideBar.location": "left",
"git.enableSmartCommit": true,
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.perEditorGroup": true,
"workbench.editor.limit.value": 5,
"terminal.integrated.shell.osx": "/bin/zsh",
"editor.fontSize": 14,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnSave": false,
"git.confirmSync": false,
"prettier.eslintIntegration": true,
"window.zoomLevel": 1,
"editor.rulers": [
90,
120
],
"eslint.packageManager": "yarn",
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
// "editor.renderLineHighlight": "gutter",
"editor.tabSize": 2,
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 13,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"editor.parameterHints.enabled": false,
"breadcrumbs.enabled": true,
"javascript.suggest.autoImports": false,
"explorer.confirmDelete": false,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "material-icon-theme",
"explorer.compactFolders": false,
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"mdb.confirmRunAll": false,
"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",
"grps": "pipe",
"github": "github"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},
"workbench.colorTheme": "Default Light+",
"debug.javascript.codelens.npmScripts": "never",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment