Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The package.json file is invalid as it only contains a newline character. A package.json file must contain valid JSON, starting with at least {}. Based on the PR title, it seems you intended to set up prettier at the root level. I've provided a suggestion to correctly structure this file with prettier as a dev dependency and a corresponding format script.

Suggested change
{
"name": "meadows-social-root",
"private": true,
"devDependencies": {
"prettier": "^3.5.3"
},
"scripts": {
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md,html}\""
}
}