Last active
November 27, 2020 01:38
-
-
Save luistak/3ce35ef8431e37d6ee01d071fac36c6d to your computer and use it in GitHub Desktop.
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": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"editor.renderWhitespace": "all", | |
"eslint.workingDirectories": [ | |
{ | |
"directory": "packages/web", | |
"changeProcessCWD": true | |
}, | |
{ | |
"directory": "packages/desktop", | |
"changeProcessCWD": true | |
} | |
], | |
"files.associations": { | |
"**/src/**/*.js": "javascript", | |
"**/Jenkinsfile*": "groovy", | |
"**/Dockerfile*": "dockerfile" | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bin": true, | |
"**/__docs__": true, | |
"**/__reports__": true, | |
"**/dist": true, | |
"**/.sonar": true, | |
"**/.vscode": true | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/bin": true, | |
"**/.sonar": true, | |
"packages/web/src/**/*.css": true | |
}, | |
"window.zoomLevel": -1, | |
"eslint.autoFixOnSave": true, | |
"terminal.integrated.rendererType": "dom", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.rulers": [120], | |
// "workbench.colorCustomizations": { | |
// "editorRuler.foreground": "#cecece" | |
// }, | |
"editor.hideCursorInOverviewRuler": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"telemetry.enableTelemetry": false | |
} |
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": "FiraCode-Retina", | |
"debug.console.fontFamily": "FiraCode-Retina", | |
"editor.tabSize": 2, | |
"editor.renderWhitespace": "all", | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bin": true, | |
"**/__docs__": true, | |
"**/__reports__": true, | |
"**/dist": true, | |
"**/.sonar": true, | |
"**/.vscode": true | |
}, | |
// "tslint.autoFixOnSave": true, | |
"editor.rulers": [120], | |
"editor.hideCursorInOverviewRuler": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"window.zoomLevel": 0, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"markdown.preview.fontSize": 13, | |
"terminal.integrated.fontWeight": "400", | |
"editor.fontLigatures": true, | |
"workbench.editor.showTabs": true, | |
// "workbench.fontAliasing": "antialiased", | |
"explorer.confirmDragAndDrop": false, | |
// "editor.formatOnSave": true, | |
// "editor.formatOnSave": true, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
} | |
}, | |
"[typescriptreact]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
} | |
}, | |
"editor.fontWeight": "500", | |
"workbench.fontAliasing": "antialiased", | |
"workbench.activityBar.visible": true, | |
"editor.minimap.enabled": false, | |
"emojisense.languages": { | |
"javascript": true | |
}, | |
"workbench.panel.defaultLocation": "right", | |
"editor.fontSize": 14, | |
"terminal.integrated.fontSize": 14, | |
// "editor.fontSize": 24, | |
// "terminal.integrated.fontSize": 22. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
New vscode settings