Skip to content

Instantly share code, notes, and snippets.

@hyunbinseo
Last active July 5, 2024 08:36
Show Gist options
  • Save hyunbinseo/7704f9538767c694800d0a46315b2254 to your computer and use it in GitHub Desktop.
Save hyunbinseo/7704f9538767c694800d0a46315b2254 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"[csv]": {
"files.encoding": "utf8bom"
},
"[markdown]": {
"prettier.tabWidth": 2,
"prettier.useTabs": false
},
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
},
"[tsv]": {
"files.encoding": "utf8bom"
},
"css.lint.unknownAtRules": "ignore",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "'Goorm Sans Code', 'hesalche','hesalche-Regular','Elice DigitalCoding OTF', Menlo, Monaco, 'Courier New', monospace",
"editor.formatOnSave": true,
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.stickyScroll.enabled": true,
"editor.tabSize": 2,
"eslint.validate": ["javascript", "javascriptreact", "svelte"],
"files.associations": {},
"files.eol": "\n",
"files.insertFinalNewline": true,
"git.ignoreMissingGitWarning": true,
"js/ts.implicitProjectConfig.checkJs": true,
"prettier.printWidth": 100,
"prettier.quoteProps": "consistent",
"prettier.singleQuote": true,
"prettier.useTabs": true,
"svelte.enable-ts-plugin": true,
"terminal.integrated.enablePersistentSessions": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.nativeTabs": true,
"workbench.colorTheme": "GitHub Dark Default",
"workbench.startupEditor": "none"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment