Last active
July 13, 2025 14:15
-
-
Save arianebrandao/de6e1ca4623761b0b9866fe3899c9a06 to your computer and use it in GitHub Desktop.
VSCode Settings
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
{ | |
// Configurações da fonte JetBrains Mono | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 16, | |
"editor.lineHeight": 1.8, | |
"editor.semanticHighlighting.enabled": false, | |
// Demais configurações | |
"workbench.colorTheme": "Aura Soft Dark (Soft Text)", | |
"workbench.iconTheme": "material-icon-theme", | |
"explorer.compactFolders": false, | |
"editor.renderLineHighlight": "all", | |
"workbench.editor.labelFormat": "short", | |
"extensions.ignoreRecommendations": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"breadcrumbs.enabled": true, | |
"editor.parameterHints.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"editor.rulers": [80, 120], | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit", | |
"source.addMissingImports": "explicit", | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"typescript.preferences.preferTypeOnlyAutoImports": true, | |
"editor.suggestSelection": "first", | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[javascript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit", | |
"source.addMissingImports": "explicit" | |
} | |
}, | |
"[typescript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
} | |
}, | |
"[typescriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
} | |
}, | |
"[javascriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
} | |
}, | |
"[prisma]": { | |
"editor.defaultFormatter": "Prisma.prisma", | |
"editor.formatOnSave": true | |
}, | |
"[php]": { | |
"editor.defaultFormatter": "vscode.php-language-features" | |
}, | |
"cSpell.language": "en,pt,pt-BR", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"workbench.editor.splitInGroupLayout": "vertical", | |
"sonarlint.ls.javaHome": "D:\\\\ZLaragon\\\\etc\\\\java\\\\jdk-21.0.5", | |
"sonarlint.trace.server": "off", | |
"git.autofetch": true, | |
"editor.accessibilitySupport": "off", | |
"cSpell.userWords": ["alura", "fastify", "rocketseat"], | |
"scss-to-css-compile.outDir": "", | |
"[javascriptreact][typescript][typescriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
} | |
}, | |
"workbench.layoutControl.enabled": false, | |
"terminal.integrated.env.windows": {}, | |
"console-ninja.featureSet": "Community", | |
"editor.stickyScroll.enabled": false, | |
"tailwindCSS.experimental.classRegex": [ | |
["([\"'`][^\"'`]*.*?[\"'`])", "[\"'`]([^\"'`]*).*?[\"'`]"] | |
], | |
"editor.formatOnSave": true, | |
"prettier.semi": false, | |
"prettier.singleQuote": true, | |
"biome.requireConfiguration": true, | |
"biome.suggestInstallingGlobally": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment