Skip to content

Commit

Permalink
Update: [VSCode] 保存時に ESLint による自動フォーマットを行う
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Apr 23, 2023
1 parent 23545bf commit e4c9834
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
// 保存時に ESLint による自動フォーマットを行う
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// pipenv の仮想環境のあるフォルダを指定(指定しないと認識しない)
"python.defaultInterpreterPath": "${workspaceFolder}/server/.venv/Scripts/python.exe",
// 相対インポートが解決されるようにする
Expand Down
2 changes: 1 addition & 1 deletion client/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
'@vue/cli-plugin-babel/preset',
]
};

0 comments on commit e4c9834

Please sign in to comment.