## 概要 [Task1953: API IF実装(accounts/me復活)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/1953) - accounts/meのIFを追加しました ※別タスク「タスク 1837: API I/F実装」でレビューまでしてもらったものの、階層をアクセストークンに含める方針としたため削除としたものを復活させています。 - prettierがエラーを出力するようになっていたので、以下URLを参考にsettings.jsonを更新しています https://qiita.com/TellMin/items/a634149730b777e2e6d0 - このPull Requestでの対象外 ・openapi.jsonのL952とL2094については本PBI対象外になります ## レビューポイント - 特にありません ## UIの変更 - 無し ## 動作確認状況 - ローカルで確認 ## 補足 - 相談、参考資料などがあれば
22 lines
592 B
JSON
22 lines
592 B
JSON
{
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"eslint.format.enable": false,
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"editor.formatOnPaste": true,
|
|
"editor.formatOnType": true,
|
|
"editor.renderWhitespace": "all",
|
|
"editor.insertSpaces": false,
|
|
"editor.renderLineHighlight": "all",
|
|
"prettier.prettierPath": "./node_modules/prettier"
|
|
} |