Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,15 @@ 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/`.
Expand Down