Skip to content

Instantly share code, notes, and snippets.

@robsonsilv4
Created January 21, 2020 18:06
Show Gist options
  • Save robsonsilv4/d61afe1cfa1b294ba77741945192f13d to your computer and use it in GitHub Desktop.
Save robsonsilv4/d61afe1cfa1b294ba77741945192f13d to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.startupEditor": "none",
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
// Fontes
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontLigatures": true,
"files.trimTrailingWhitespace": true,
"javascript.format.enable": false,
"editor.wordWrap": "bounded",
"files.exclude": {
"**/node_modules": true
},
"editor.cursorBlinking": "smooth",
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true,
"prettier.semi": false,
// "editor.rulers": [80, 120],
"eslint.packageManager": "yarn",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
},
// VueJ
"vetur.format.defaultFormatter.html": "prettyhtml",
"vetur.format.defaultFormatter.js": "prettier-eslint",
// "eslint.validate": [
// {
// "language": "javascript"
// // "autoFix": true
// },
// {
// "language": "javascriptreact",
// "autoFix": true
// },
// {
// "language": "typescript",
// "autoFix": true
// },
// {
// "language": "typescriptreact",
// "autoFix": true
// }
// ],
"files.associations": {
".sequelizerc": "javascript"
},
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight": "gutter",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize": 14,
"editor.tabSize": 2,
// "window.zoomLevel": 1,
"extensions.ignoreRecommendations": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"breadcrumbs.enabled": true,
"git.enableSmartCommit": true,
"typescript.tsserver.log": "verbose",
"workbench.activityBar.visible": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.trailingComma": "all",
"prettier.requireConfig": true,
"prettier.jsxBracketSameLine": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment