Skip to content

Commit

Permalink
Update: VSCode 設定を調整
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Jan 17, 2025
1 parent 8fe46fd commit 701060e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
// 日々付け替えられるナイトリービルド (1.x.x-dev) のタグがローカルと競合するため、
// リモートで追加されたタグを自動ではローカルに反映しない
"git.pullTags": false,
// 保存時に ESLint による自動フォーマットを行う
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
// 日々付け替えられるナイトリービルド (1.x.x-dev) のタグがローカルと競合するため、
// リモートで追加されたタグを自動ではローカルに反映しない
"git.pullTags": false,
// TypeScript で自動インポートを有効化
"typescript.suggest.autoImports": true,
// TypeScript でファイルの名前を変更または移動するときにインポートパスを自動更新する
"typescript.updateImportsOnFileMove.enabled": "always",
// TypeScript の SDK をプロジェクトの node_modules から読み込む
"typescript.tsdk": "node_modules/typescript/lib",
}

0 comments on commit 701060e

Please sign in to comment.