エラー「Expected property shorthand object-shorthand」の対処方法
の対処方法がわかったのでメモ。
error Expected property shorthand object-shorthand
✖ 1 problem (1 error, 0 warnings)
1 error and 0 warnings potentially fixable with the `--fix` option.
このような記載をしていたら、エラーが出た。
return { area: area, prefecture: facility.prefecture, town: facility.address }
keyと値が同じだから、ダメなんだと変数名を変更していたのだが、
keyと値が同じなら、値を省略していいようで、省略したら、エラーが解消された。
return { area, prefecture: facility.prefecture, town: facility.address }