Skip to content

Instantly share code, notes, and snippets.

@remulocosta
Last active June 2, 2020 00:45
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 remulocosta/5de5a6e7c938e3c0f63ddfbfbd893e34 to your computer and use it in GitHub Desktop.
Save remulocosta/5de5a6e7c938e3c0f63ddfbfbd893e34 to your computer and use it in GitHub Desktop.
Settings for VSCode
{
"extensions.ignoreRecommendations": true,
"workbench.activityBar.visible": true,
// Define o tema do VSCode
"workbench.colorTheme": "Omni",
"workbench.editor.labelFormat": "short",
// Define o tema dos ícones na sidebar
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
// Configura tamanho e família da fonte
"editor.fontSize": 12,
"editor.lineHeight": 20,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnSave": false,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [
80,
120
],
"editor.tabSize": 2,
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"eslint.alwaysShowStatus": true,
"eslint.packageManager": "yarn",
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
// "source.fixAll.stylelint": true,
// "source.fixAll": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
// "source.fixAll.stylelint": true,
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
// "source.fixAll.stylelint": true,
// "source.fixAll": true,
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
// "source.fixAll.stylelint": true,
// "source.fixAll": true,
}
},
// "stylelint.enable": true,
// "eslint.enable": true,
// "eslint.autoFixOnSave": true,
// "eslint.validate": [
// {
// "language": "javascript",
// "autoFix": true
// },
// {
// "language": "javascriptreact",
// "autoFix": true
// },
// {
// "language": "typescript",
// "autoFix": true
// },
// {
// "language": "typescriptreact",
// "autoFix": true
// }
// ],
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight": "gutter",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize": 12,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": true,
"gitlens.codeLens.enabled": false,
"breadcrumbs.enabled": true,
"git.enableSmartCommit": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.rendererType": "dom",
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": true,
"liveshare.featureSet": "insiders",
"javascript.updateImportsOnFileMove.enabled": "never",
"javascript.validate.enable": true,
"javascript.suggest.autoImports": false,
"javascript.suggestionActions.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.tsserver.log": "verbose",
"typescript.suggest.autoImports": false,
"typescript.suggestionActions.enabled": false,
"editor.parameterHints.enabled": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.minimap.enabled": false,
//"editor.suggestSelection": "first",
//"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"cSpell.language": "en,pt,pt_BR",
"cSpell.userWords": [
"Componentização",
"Errored",
"Genymotion",
"Inputblur",
"Liskov",
"Omni",
"Remulo",
"Responsability",
"Roboto",
"camelcase",
"directo",
"downlevel",
"dtos",
"esnext",
"filesize",
"knexfile",
"middlewares",
"originalname",
"postgres",
"readonly",
"repos",
"signup",
"sourcemap",
"storaged",
"tslib",
"tsyringe",
"typechecking",
"typeorm",
"unform",
"uuidv",
"varchar",
"whatsapp"
],
"window.zoomLevel": 0,
"search.maintainFileSearchCache": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// "editor.snippetSuggestions": "top",
//"prettier.eslintIntegration": true,
"material-icon-theme.activeIconPack": "nest",
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},
"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"
},
"workbench.colorCustomizations": {
"editor.selectionBackground": "#0c3741",
"editor.selectionHighlightBackground": "#0f4753"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment