Update Prettier for package.json

Next sometimes wants to patch `package-lock.json`. The old Prettier setting indended with 4 spaces, but Next always indends with 2 spaces. Since `npm install` automatically uses the indendation from `package.json` for `package-lock.json` and to avoid the format switching back and forth, both files are now set to 2 spaces.
This commit is contained in:
Marcus Blättermann 2022-12-20 23:01:31 +01:00
parent 95443133f6
commit 39610dfd0f
No known key found for this signature in database
GPG Key ID: A1E1F04008AC450D
3 changed files with 21079 additions and 21079 deletions

View File

@ -22,7 +22,7 @@
{
"files": ["package.json", "package-lock.json"],
"options": {
"tabWidth": 4,
"tabWidth": 2,
"printWidth": 80,
"proseWrap": "always"
}