Skip to content

Commit

Permalink
chore: vscode 설정을 추가합니다.
Browse files Browse the repository at this point in the history
  • Loading branch information
InSeong-So committed Mar 30, 2024
1 parent e30a161 commit 8f54da2
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .vscode/extension.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"recommendations": [
"aaron-bond.better-comments",
"dbaeumer.vscode-eslint",
"eliostruyf.vscode-typescript-exportallmodules",
"eamodio.gitlens",
"esbenp.prettier-vscode",
"styled-components.vscode-styled-components",
"streetsidesoftware.code-spell-checker",
"stylelint.vscode-stylelint"
]
}
73 changes: 73 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{
"search.exclude": {
// 파일
"**/.pnp.*": true,
"**/*.map.*": true,
"**/tsconfig.tsbuildinfo": true,
"**/pnpm-lock.yaml": true,
// 디렉토리
"**/.next/*": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.updateImportsOnFileMove.enabled": "always",
"eslint.nodePath": "node_modules",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnPaste": false,
"editor.formatOnType": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.organizeImports": "always"
},
"prettier.prettierPath": "node_modules/prettier/index.cjs",
"prettier.configPath": ".prettierrc.js",
"better-comments.tags": [
{
"tag": "caution",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "see",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "note",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
]
}

0 comments on commit 8f54da2

Please sign in to comment.