VSCode settings
{ | |
"editor.fontFamily": " 'Dank Mono', 'Cascadia Code', 'Operator Mono Ssm Lig', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 16, | |
"editor.fontWeight": "600", | |
"editor.tabSize": 2, | |
"editor.lineHeight": 27, | |
"editor.fontLigatures": true, | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"editor.minimap.enabled": false, | |
"editor.cursorStyle": "underline-thin", | |
"editor.cursorBlinking": "solid", | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.formatOnSave": false, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.suggestSelection": "recentlyUsed", | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"eslint.autoFixOnSave": true, | |
"eslint.alwaysShowStatus": true, | |
"eslint.packageManager": "npm", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"workbench.sideBar.location": "right", | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.shell.osx": "/usr/local/bin/zsh", | |
"workbench.iconTheme": "vscode-icons-mac", | |
"workbench.startupEditor": "newUntitledFile", | |
"explorer.openEditors.visible": 0, | |
"window.zoomLevel": 0, | |
"problems.showCurrentInStatus": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment