Skip to content

Instantly share code, notes, and snippets.

@jayjongcheolpark
Created December 16, 2019 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jayjongcheolpark/6d008b4f0264e3a9468e85179df299e5 to your computer and use it in GitHub Desktop.
Save jayjongcheolpark/6d008b4f0264e3a9468e85179df299e5 to your computer and use it in GitHub Desktop.
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