Last active
June 22, 2022 02:32
-
-
Save Eronheit/a97732f2c4317c2a1d8f7374fad69945 to your computer and use it in GitHub Desktop.
Default settings VSCode
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
{ | |
"breadcrumbs.enabled": true, | |
"editor.tabSize": 2, | |
"editor.fontSize": 16, | |
"editor.lineHeight": 26, | |
"editor.rulers": [100, 120], | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.suggestSelection": "first", | |
"editor.parameterHints.enabled": false, | |
"editor.renderLineHighlight": "gutter", | |
"editor.semanticHighlighting.enabled": false, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"explorer.confirmDelete": false, | |
"explorer.compactFolders": false, | |
"explorer.confirmDragAndDrop": false, | |
"extensions.ignoreRecommendations": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"node_modules/": true | |
}, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
".prettierrc": "json", | |
"*.tsx": "typescriptreact" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"material-icon-theme.activeIconPack": "nest", | |
"redhat.telemetry.enabled": true, | |
"splitHTMLAttributes.closingBracketOnNewLine": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.tabs.enabled": false, | |
"terminal.integrated.showExitAlert": false, | |
"typescript.tsserver.log": "verbose", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"window.zoomLevel": -1, | |
"window.menuBarVisibility": "toggle", | |
"workbench.colorTheme": "Dracula", | |
"workbench.editor.labelFormat": "short", | |
"workbench.editor.untitled.hint": "hidden", | |
"workbench.productIconTheme": "fluent-icons", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"yaml.schemas": { | |
"file:///home/eronheit/.vscode/extensions/atlassian.atlascode-2.9.1/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"[javascriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"[prisma]": { | |
"editor.defaultFormatter": "Prisma.prisma", | |
"editor.formatOnSave": true, | |
}, | |
"[typescript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"[typescriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"diffEditor.ignoreTrimWhitespace": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment