From 830e7543183fd280800a87916a7a4752d1b35ce9 Mon Sep 17 00:00:00 2001 From: Abhinav Kumar Date: Sun, 6 Jul 2025 18:39:17 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef86375..5780301 100644 --- a/README.md +++ b/README.md @@ -88,13 +88,16 @@ guidelines: _Example Structure in Your Project Root:_ - ```your-project/ +``` +your-project/ ├── GEMINI.md ├── .gemini-guidelines/ │ ├── overview.md │ └── component-design.md └── src/ - └── ...``` + └── components +``` + 1. **Customize and Extend**: - Open the copied `GEMINI.md` and the files within `.gemini-guidelines/`. From 88417d44e5cd70ff863b433e860bcd09b5831c80 Mon Sep 17 00:00:00 2001 From: Abhinav Date: Sun, 6 Jul 2025 18:42:07 +0200 Subject: [PATCH 2/2] fix linting --- .markdownlint.jsonc | 4 +--- README.md | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.markdownlint.jsonc b/.markdownlint.jsonc index de348f8..5b6ba15 100644 --- a/.markdownlint.jsonc +++ b/.markdownlint.jsonc @@ -8,6 +8,7 @@ // Disable this for prose as Prettier's "proseWrap: always" handles wrapping, // and strict line limits can make documentation hard to read. "MD013": false, + "MD040": false, "line-length": false, "MD031": false, "MD032": false, @@ -17,9 +18,6 @@ // MD034: Bare URL used // This is a good rule to enforce for readability. We will fix these. "MD034": true, - // MD040: Fenced code blocks should have a language specified - // This is important for syntax highlighting. We will fix these. - "MD040": true, // MD041: First line in a file should be a top-level heading // This is a good practice for READMEs. We will fix this. "MD041": true, diff --git a/README.md b/README.md index 5780301..e27c38e 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,6 @@ your-project/ └── components ``` - 1. **Customize and Extend**: - Open the copied `GEMINI.md` and the files within `.gemini-guidelines/`. - Modify their content to reflect your project's unique coding standards,