From 83cfb9415b0ff22e35b76742af12320d9d65925b Mon Sep 17 00:00:00 2001 From: Jadonamite Date: Mon, 29 Dec 2025 03:48:00 +0100 Subject: [PATCH] docs: Add JSON syntax warning to Ecosystem contribution guide This Commit adds a crucial warning to the **Updating the Base Ecosystem Page** section. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index efa3d4fc42..20adb13860 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,11 @@ If you're a builder who wants to add or update your project on the [Base Ecosyst 3. Update the `ecosystem.json` file in `apps/web/src/data/` with your project's details : ```json + + > **Important:** Please ensure your JSON is valid before committing! +> A single missing comma or trailing comma will fail the build. +> We recommend running `yarn lint` locally or checking your syntax with a tool like [JSONLint](https://jsonlint.com/). + { "name": "Your Project Name", "description": "A brief description (less than 200 characters)",