Last active
July 5, 2024 08:36
-
-
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]": { | |
"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