11# Contributing Guidelines
22
3- Thank you for helping improve the ** Flare Developer Hub** !
3+ Thank you for helping improve ** Flare Developer Hub** !
44Your contributions make our documentation, tooling, and examples better for everyone.
55
66We welcome:
@@ -10,7 +10,7 @@ We welcome:
1010
1111## 🛠 Development Workflow
1212
13- 1 . ** Fork and branch:** Create a branch for your work:
13+ 1 . ** Fork and branch:** Fork the repo on GitHub and create a branch for your work:
1414
1515 ``` bash
1616 git checkout -b feature/your-feature-name
@@ -20,7 +20,7 @@ We welcome:
2020 - Documentation (` docs/` )
2121 - Source code (` src/` )
2222 - Examples (` examples/` )
23- - automation scripts (` automations/` , ` docgen/` )
23+ - automation and docgen scripts (` automations/` , ` docgen/` )
2424
25253. ** Follow Style Guides:**
2626 - ** Code/Docs:** Run [Pre-PR checks](# pre-pr-checks). Match existing code style.
@@ -66,13 +66,13 @@ We welcome:
6666- ✅ ** Provide Context:** Describe the problem, solution, and link related issues.
6767- ✅ ** Pass CI:** Fix any GitHub Actions failures before requesting review.
6868- ✅ ** Update Docs:** If behavior or usage changes.
69- - ✅ ** Confirm Licensing:** All PRs are submitted under this repo’s license.
69+ - ✅ ** Confirm Licensing:** All PRs are submitted under this repo’s [ license](LICENSE) .
7070
7171# # <a id="pre-pr-checks"></a>🔍 Pre-PR Checks
7272
7373Run these before submitting a PR:
7474
75- 1. ** Build & verify internal links:**
75+ 1. ** Build & check internal links:**
7676
7777 ` ` ` bash
7878 npm run build
@@ -90,15 +90,15 @@ Run these before submitting a PR:
9090 lychee --config lychee.toml .
9191 ` ` `
9292
93- 4. ** If you modified examples** , run their formatters/ tests:
94- (example for Rust, see ` examples/developer-hub- * /README.md ` for more instructions)
93+ 4. ** If you modified examples** , run their formatters and tests, see ` examples/developer-hub- * /README.md ` for more instructions.
94+ Example for Rust:
9595
9696 ` ` ` bash
9797 cd examples/developer-hub-rust/
9898 cargo fmt -- --check # Format
9999 cargo clippy --bins -- -D warnings # Lint
100100 cargo build --bins --locked # Build
101- chmod +x test.sh && ./test.sh # Tes
101+ chmod +x test.sh && ./test.sh # Test
102102 ` ` `
103103
104104# # <a id="diagrams-style-guide"></a>🖼 Diagrams Style Guide
0 commit comments