Last active
June 16, 2021 09:42
-
-
Save NMDSilva/fa95797c747b6ddacb696abc5c43e062 to your computer and use it in GitHub Desktop.
Configurações do vscode
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
| { | |
| "breadcrumbs.enabled": true, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.formatOnSave": false, | |
| "editor.formatOnType": true, | |
| "editor.lineHeight": 22, | |
| "editor.minimap.enabled": false, | |
| "editor.parameterHints.enabled": false, | |
| "editor.renderLineHighlight": "all", | |
| "editor.rulers": [ | |
| 80, | |
| 120, | |
| ], | |
| "editor.tabSize": 2, | |
| "editor.wordWrap": "on", | |
| "editor.largeFileOptimizations": false, | |
| "emmet.includeLanguages": { | |
| "asp": "html", | |
| "javascript": "javascriptreact" | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx", | |
| }, | |
| "emmet.triggerExpansionOnTab": true, | |
| "explorer.compactFolders": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "extensions.ignoreRecommendations": true, | |
| "files.associations": { | |
| ".sequelizerc": "javascript", | |
| ".prettierrc": "json", | |
| ".stylelintrc": "json", | |
| "*.ext": "javascript" | |
| }, | |
| "git.confirmSync": false, | |
| "git.enableSmartCommit": true, | |
| "gitlens.codeLens.authors.enabled": false, | |
| "gitlens.codeLens.enabled": false, | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "javascript.suggest.autoImports": false, | |
| "javascript.updateImportsOnFileMove.enabled": "never", | |
| "[javascript]": { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| }, | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": "vscode.typescript-language-features", | |
| }, | |
| "prettier.printWidth": 120, | |
| "prettier.singleQuote": true, | |
| "prettier.tabWidth": 2, | |
| "projectManager.projectsLocation": "c:\\users\\ns198422\\.vscode\\configs", | |
| "search.showLineNumbers": true, | |
| "terminal.integrated.fontSize": 14, | |
| "typescript.suggest.autoImports": true, | |
| "typescript.tsserver.log": "verbose", | |
| "typescript.updateImportsOnFileMove.enabled": "never", | |
| "[typescript]": { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| } | |
| }, | |
| "workbench.activityBar.visible": true, | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "todohighlight.include": [ | |
| "**/*.asp", | |
| "**/*.js", | |
| "**/*.ts", | |
| "**/*.html", | |
| "**/*.css", | |
| "**/*.scss" | |
| ], | |
| "[json]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "cSpell.enableFiletypes": [ | |
| "!go", | |
| "!jade", | |
| "!java", | |
| "!latex", | |
| "!pug", | |
| "!python", | |
| "!rust", | |
| "!scala", | |
| "!yaml", | |
| "!yml", | |
| "asp", | |
| "powershell" | |
| ], | |
| "cSpell.language": "en,pt-PT", | |
| "cSpell.userWords": [ | |
| "alertify", | |
| "alteracao", | |
| "conteudo", | |
| "cumulativa", | |
| "descricao", | |
| "formulario", | |
| "gestao", | |
| "logerros", | |
| "mailto", | |
| "modulos", | |
| "niss", | |
| "observacoes", | |
| "somatórios", | |
| "varchar", | |
| "verificacao" | |
| ], | |
| "python.showStartPage": false, | |
| "tabnine.experimentalAutoImports": true, | |
| "window.zoomLevel": 1 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment