Created
July 14, 2021 17:49
-
-
Save duard/d1277fab5c1b35e073b7fa41f1c5cc5f to your computer and use it in GitHub Desktop.
vscode configurations
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.tabSize": 2, | |
"editor.fontFamily": "Dank Mono, Operator Mono, Firacode, 'Fira Code', Fira Code, Consolas, 'Courier New', monospace", | |
"terminal.integrated.fontFamily": "Hack Nerd Font, hack", | |
"terminal.integrated.rendererType": "dom", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "material-icon-theme", | |
"files.associations": { | |
"*.svelte": "html" | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"svelte", | |
"html" | |
], | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.minimap.enabled": false, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[svelte]": { | |
"editor.defaultFormatter": "svelte.svelte-vscode" | |
}, | |
"eslint.options": { | |
"extensions": [ //List of file extensions to activate eslint | |
".html", | |
".js", | |
".vue", | |
".jsx", | |
".svelte" | |
] | |
}, | |
// Run the linter on save (onSave) or on type (onType) | |
// "eslint.run": "onSave", | |
"workbench.colorTheme": "Omni", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
// "editor.defaultFormatter": "octref.vetur", | |
// "vetur.format.defaultFormatter.html": "prettier", | |
// "vetur.format.defaultFormatter.css": "prettier", | |
// "vetur.format.defaultFormatter.postcss": "prettier", | |
// "vetur.format.defaultFormatter.scss": "prettier", | |
// "vetur.format.defaultFormatter.less": "prettier", | |
// "vetur.format.defaultFormatter.stylus": "stylus-supremacy", | |
// "vetur.format.defaultFormatter.js": "prettier", | |
// "editor.codeActionsOnSave": { | |
// "source.fixAll.eslint": true | |
// }, | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": true, | |
"eslint.format.enable": true, | |
"eslint.codeAction.showDocumentation": { | |
"enable": true | |
}, | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.formatOnPaste": false, | |
"editor.formatOnSave": false, | |
"editor.formatOnType": false, | |
"window.zoomLevel": 3, | |
"json.maxItemsComputed": 5000000, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment