-
-
Save tjuandev/fd86864e693e4952ef7fbc793851d117 to your computer and use it in GitHub Desktop.
VS Code 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
| { | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontSize": 14, | |
| "editor.fontLigatures": true, | |
| "editor.fontWeight": 300, | |
| "editor.lineHeight": 22, | |
| "editor.suggestSelection": "first", | |
| "editor.parameterHints.enabled": false, | |
| "editor.formatOnPaste": true, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.rulers": [100, 120], | |
| "editor.minimap.enabled": false, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll": true, | |
| "source.organizeImports": true | |
| }, | |
| "workbench.colorTheme": "GitHub Dark", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.editor.labelFormat": "short", | |
| "breadcrumbs.enabled": true, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "node_modules": true | |
| }, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.compactFolders": false, | |
| "typescript.tsdk": "node_modules/typescript/lib", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "typescriptHero.imports.multiLineWrapThreshold": 125, | |
| "typescriptHero.imports.organizeOnSave": true, | |
| "typescriptHero.imports.multiLineTrailingComma": false, | |
| "prettier.singleQuote": true, | |
| "prettier.tabWidth": 2, | |
| "prettier.useTabs": false, | |
| "prettier.printWidth": 120, | |
| "prettier.arrowParens": "avoid", | |
| "prettier.withNodeModules": true, | |
| "prettier.useEditorConfig": true, | |
| "eslint.format.enable": true, | |
| "eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"], | |
| "eslint.alwaysShowStatus": true, | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "[go]": { | |
| "editor.defaultFormatter": "golang.go" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[yaml]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[scss]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment