Created
January 12, 2021 06:56
-
-
Save bastienapp/057df1ddf99e1d0eb902ce68469ee687 to your computer and use it in GitHub Desktop.
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.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"files.eol": "\n", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.tabSize": 2, | |
"prettier.jsxSingleQuote": true, | |
"prettier.singleQuote": true, | |
"window.zoomLevel": 1, | |
"workbench.startupEditor": "newUntitledFile", | |
"files.autoSave": "off", | |
"editor.minimap.enabled": false, | |
"editor.renderControlCharacters": false, | |
"editor.fontSize": 16, | |
"debug.console.fontSize": 16, | |
"markdown.preview.fontSize": 16, | |
"terminal.integrated.fontSize": 16, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.fontFamily": "'Fira Code', Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": false, | |
"workbench.colorTheme": "Dracula Soft", | |
"editor.wordWrap": "on", | |
"diffEditor.ignoreTrimWhitespace": true, | |
"diffEditor.renderSideBySide": true, | |
"explorer.confirmDragAndDrop": false, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"name": "comment", | |
"scope": ["comment"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
} | |
] | |
}, | |
"terminal.integrated.shell.linux": "/bin/bash", | |
"explorer.confirmDelete": false, | |
"liveshare.authenticationProvider": "GitHub" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment