Skip to content

Commit

Permalink
VS CodeのFormatterとLinterの設定と推奨拡張機能を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
3w36zj6 committed Nov 8, 2023
1 parent ada60b2 commit a763aaf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"]
}
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"[javascript][typescript][json][yaml][toml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true
}

0 comments on commit a763aaf

Please sign in to comment.