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
16 changes: 16 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
repos:
- repo: local
hooks:
- id: mkdocs-build
name: mkdocs build --strict
entry: .venv/bin/mkdocs build --strict
language: system
pass_filenames: false
files: ^(docs/|mkdocs\.yml)

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.43.0
hooks:
- id: markdownlint
args: ["--fix"]
exclude: ^\.claude/
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ Read these to understand the format. Create your own based on your project.
## Links

- **Working Demo**: [demo-fastapi](https://github.com/ambient-code/demo-fastapi)
- **Presentation**: [PRESENTATION-ambient-code-reference.md](../PRESENTATION-ambient-code-reference.md)
- **Presentation**: [PRESENTATION-ambient-code-reference.md](https://github.com/ambient-code/reference/blob/main/PRESENTATION-ambient-code-reference.md)
4 changes: 3 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ nav:
- Foundation:
- Security Patterns: patterns/security-patterns.md
- Testing Patterns: patterns/testing-patterns.md
- ADR Template: adr/template.md
- ADR:
- About ADRs: adr/README.md
- Template: adr/template.md

extra:
social:
Expand Down
5 changes: 5 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@
black>=23.12.0
isort>=5.13.0
ruff>=0.1.0
pre-commit>=3.6.0
mkdocs>=1.6.0
mkdocs-material>=9.5.0
mkdocs-mermaid2-plugin>=1.1.0
pymdown-extensions>=10.0.0
Loading