Last active
June 13, 2022 00:26
-
-
Save caioagiani/5fcb14b20e011e3eb52e6fbff4abaae6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "ruby.rubocop.onSave": true, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnPaste": true, | |
| "editor.formatOnType": true, | |
| /* End autofix */ | |
| // "standard.autoFixOnSave": true, | |
| "editor.snippetSuggestions": "top", | |
| "terminal.integrated.fontSize": 14, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.tabSize": 2, | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 26, | |
| "editor.fontFamily": "JetBrains Mono", | |
| "editor.fontLigatures": true, | |
| "editor.semanticHighlighting.enabled": false, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true | |
| // "*/node_modules": 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], | |
| "files.associations": { | |
| ".sequelizerc": "javascript", | |
| ".stylelintrc": "json", | |
| ".prettierrc": "json", | |
| "*.tsx": "typescriptreact", | |
| ".env.*": "dotenv", | |
| "*.edge": "html" | |
| }, | |
| "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, | |
| "liveshare.featureSet": "insiders", | |
| "liveshare.presence": true, | |
| "typescript.tsserver.log": "off", | |
| "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": { | |
| "ormconfig.json": "database", | |
| "tsconfig.json": "tune", | |
| "*.proto": "3d", | |
| "*.webpack.js": "webpack" | |
| }, | |
| "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", | |
| "providers": "include", | |
| "subscribers": "messages", | |
| "useCases": "controller", | |
| "kafka": "scripts", | |
| "mappers": "meta", | |
| "_shared": "shared", | |
| "eslint-config": "tools", | |
| "kube": "kubernetes", | |
| "widgets": "components", | |
| "font-angular": "font", | |
| "font-react": "React-Components", | |
| "presentation": "redux-actions", | |
| "store": "Redux-store", | |
| "actions": "redux-actions", | |
| "reducers": "redux-reducer", | |
| "ormconfig.json": "database", | |
| "tsconfig.json": "tune", | |
| "*.proto": "3d" | |
| }, | |
| "terminal.integrated.fontWeight": "normal", | |
| "tabnine.experimentalAutoImports": true, | |
| "terminal.integrated.fontFamily": "JetBrains Mono", | |
| "php.validate.executablePath": "/opt/lampp/bin/php", | |
| "workbench.sideBar.location": "left", | |
| "workbench.activityBar.visible": true, | |
| "git.confirmSync": false, | |
| "codesnap.backgroundColor": "transparent", | |
| "codesnap.transparentBackground": true, | |
| "codesnap.boxShadow": "0 0 0", | |
| // "workbench.colorCustomizations": { | |
| // "activityBar.background": "#0079c9", | |
| // "activityBar.activeBackground": "#0079c9", | |
| // "activityBar.activeBorder": "#ff80cc", | |
| // "activityBar.foreground": "#e7e7e7", | |
| // "activityBar.inactiveForeground": "#e7e7e799", | |
| // "activityBarBadge.background": "#ff80cc", | |
| // "activityBarBadge.foreground": "#15202b", | |
| // "titleBar.activeBackground": "#005a96", | |
| // "titleBar.inactiveBackground": "#005a9699", | |
| // "titleBar.activeForeground": "#e7e7e7", | |
| // "titleBar.inactiveForeground": "#e7e7e799", | |
| // "statusBar.background": "#005a96", | |
| // "statusBarItem.hoverBackground": "#0079c9", | |
| // "statusBar.foreground": "#e7e7e7", | |
| // "statusBar.border": "#005a96", | |
| // "titleBar.border": "#005a96" | |
| // }, | |
| // If not specified searches for 'rubocop' executable available on PATH (default and recommended) | |
| // "ruby.rubocop.executePath": "", | |
| // "ruby.rubocop.configFilePath": ".rubocop.yml", | |
| // You can use specific path | |
| // "ruby.rubocop.executePath": "/Users/you/.rbenv/shims/" | |
| // "ruby.rubocop.executePath": "/Users/you/.rvm/gems/ruby-2.3.2/bin/" | |
| // "ruby.rubocop.executePath": "D:/bin/Ruby22-x64/bin/" | |
| // If not specified, it assumes a null value by default. | |
| "liveServer.settings.donotVerifyTags": true, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "gitlens.defaultDateFormat": null, | |
| "security.workspace.trust.untrustedFiles": "newWindow", | |
| "editor.inlineSuggest.enabled": true, | |
| "bracket-pair-colorizer-2.depreciation-notice": false, | |
| "editor.unicodeHighlight.allowedCharacters": { | |
| "Α": true | |
| }, | |
| "editor.suggestSelection": "first", | |
| "editor.unicodeHighlight.invisibleCharacters": false, | |
| "css.enabledLanguages": ["html"], | |
| "terminal.integrated.showExitAlert": false, | |
| // "splitHTMLAttributes.closingBracketOnNewLine": true, | |
| "window.menuBarVisibility": "toggle", | |
| "cSpell.language": "en,pt", | |
| "cSpell.userWords": [ | |
| "adblocker", | |
| "adonisjs", | |
| "authkey", | |
| "cliqz", | |
| "CNAE", | |
| "CNAES", | |
| "cnpj", | |
| "codigo", | |
| "contato", | |
| "countrychange", | |
| "datatable", | |
| "datatables", | |
| "daterangepicker", | |
| "datetime", | |
| "Deletado", | |
| "descricao", | |
| "domcontentloaded", | |
| "enconding", | |
| "levante", | |
| "LSTM", | |
| "Luhn", | |
| "luxon", | |
| "maskmoney", | |
| "maxlength", | |
| "mobizon", | |
| "nestjs", | |
| "networkidle", | |
| "numero", | |
| "NUXT", | |
| "preloads", | |
| "Rubo", | |
| "rubocop", | |
| "shortcode", | |
| "Telefonico", | |
| "turbolinks", | |
| "upsert", | |
| "zipcode" | |
| ], | |
| "files.maxMemoryForLargeFilesMB": 40969999, | |
| "git.statusLimit": 10002, | |
| "workbench.colorTheme": "Omni", | |
| "workbench.editor.enablePreview": false, | |
| "sonarlint.rules": { | |
| "typescript:S4123": { | |
| "level": "off" | |
| } | |
| }, | |
| "redhat.telemetry.enabled": true, | |
| "window.zoomLevel": -1 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment