Last active
March 24, 2025 12:45
-
-
Save hyunbinseo/7704f9538767c694800d0a46315b2254 to your computer and use it in GitHub Desktop.
VS Code 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
{ | |
"[csv]": { | |
"files.encoding": "utf8bom" | |
}, | |
"[markdown]": { | |
"editor.fontFamily": "'엘리스 디지털코딩체 ver.H', 'Elice DigitalCoding OTF', monospace", | |
"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": "'구름 산스 코드 400', 'Goorm Sans Code', monospace", | |
"editor.formatOnSave": true, | |
"editor.insertSpaces": false, | |
"editor.minimap.enabled": false, | |
"editor.stickyScroll.enabled": true, | |
"editor.tabSize": 2, | |
"emmet.includeLanguages": { | |
"markdown": "html" | |
}, | |
"eslint.validate": ["javascript", "javascriptreact", "svelte"], | |
"files.insertFinalNewline": 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