Last active
January 10, 2024 12:52
-
-
Save gabriel-peruchi/e39e4094110a25ddbc132e38fc23a563 to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains 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.fontFamily": "JetBrains Mono", | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 1.5, | |
"editor.rulers": [80, 120], | |
"editor.renderLineHighlight": "gutter", | |
"editor.parameterHints.enabled": false, | |
"editor.semanticHighlighting.enabled": false, | |
"editor.minimap.enabled": false, | |
"editor.formatOnSave": false, | |
"editor.suggestSelection": "first", | |
"editor.tabSize": 2, | |
"editor.detectIndentation": false, | |
"editor.bracketPairColorization.enabled": false, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit", | |
"source.organizeImports": "never" | |
}, | |
"workbench.tree.indent": 20, | |
"workbench.iconTheme": "symbols", | |
"workbench.editor.labelFormat": "short", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.editor.enablePreview": false, | |
"workbench.statusBar.visible": false, | |
"workbench.productIconTheme": "fluent-icons", | |
"workbench.colorTheme": "Shades of Purple", | |
"workbench.layoutControl.enabled": false, | |
"window.commandCenter": false, | |
"window.menuBarVisibility": "hidden", | |
"window.titleBarStyle": "custom", | |
"explorer.compactFolders": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"explorer.fileNesting.enabled": true, | |
"explorer.fileNesting.patterns": { | |
"package.json": ".eslint*, tsconfig*, vite*, yarn*, .npm*, .yarn*, .lint*, commitlint*", | |
".env": ".env*", | |
}, | |
"breadcrumbs.enabled": false, | |
"extensions.ignoreRecommendations": true, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.showExitAlert": false, | |
"terminal.integrated.defaultProfile.linux": "zsh", | |
"emmet.syntaxProfiles": { "javascript": "jsx" }, | |
"emmet.includeLanguages": { "javascript": "javascriptreact", "ejs": "html" }, | |
"security.workspace.trust.untrustedFiles": "open", | |
"eslint.codeActionsOnSave.mode": "all", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"eslint.workingDirectories": [ | |
{ "mode": "auto" } | |
], | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.suggest.autoImports": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"typescript.tsserver.log": "off", | |
"files.associations": { | |
".stylelintrc": "json", | |
"*.tsx": "typescriptreact", | |
".env.*": "dotenv", | |
".prettierrc": "json", | |
"*.css": "css" | |
}, | |
"gitlens.codeLens.enabled": false, | |
"cSpell.language": "en,pt,pt_BR", | |
"symbols.hidesExplorerArrows": false, | |
"symbols.folders.associations": { | |
"infra": "folder-gray", | |
"application": "folder-app", | |
"domain": "folder-red", | |
"test": "folder-sky", | |
"web": "folder-sky", | |
"repositories": "folder-database" | |
}, | |
"symbols.files.associations": { | |
"*.guard.ts": "typescript", | |
"*.spec.ts": "ts-test", | |
"*.env.example": "gear" | |
}, | |
"search.searchOnType": false, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[prisma]": { | |
"editor.formatOnSave": true | |
}, | |
"apc.header": { | |
"height": 36 | |
}, | |
"apc.stylesheet": { | |
".title-label > h2": "display: none" | |
}, | |
"apc.font.family": "Inter", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment