Created
February 21, 2020 16:14
-
-
Save shakdaniel/f8ec4a6e11daaee19f2a6a1155e3bb02 to your computer and use it in GitHub Desktop.
[Editor] Settings
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.minimap.enabled": false, | |
"editor.fontSize": 15, | |
"editor.tabSize": 2, | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"workbench.activityBar.visible": true, | |
"workbench.statusBar.visible": true, | |
"workbench.colorTheme": "One Monokai", | |
"window.zoomLevel": 0, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"editor.accessibilitySupport": "off", | |
"editor.formatOnSave": false, | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"[javascriptreact]": { | |
"editor.formatOnSave": true | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": true | |
}, | |
"[typescriptreact]": { | |
"editor.formatOnSave": true | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment