You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
# Contributing Guidelines
2
2
3
-
Thank you for helping improve the **Flare Developer Hub**!
3
+
Thank you for helping improve **Flare Developer Hub**!
4
4
Your contributions make our documentation, tooling, and examples better for everyone.
5
5
6
6
We welcome:
7
7
8
8
-**[GitHub Issues](https://github.com/flare-foundation/developer-hub/issues):** Report bugs, suggest features, or ask questions.
9
-
-**Pull Requests (PRs):** Submit fixes, improvements, or new content (documentation, examples, site features).
9
+
-**[Pull Requests](https://github.com/flare-foundation/developer-hub/pulls):** Submit fixes, improvements, or new content (documentation, examples, site features).
10
10
11
11
## 🛠 Development Workflow
12
12
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:
14
14
15
15
```bash
16
16
git checkout -b feature/your-feature-name
@@ -20,7 +20,7 @@ We welcome:
20
20
- Documentation (`docs/`)
21
21
- Source code (`src/`)
22
22
- Examples (`examples/`)
23
-
- automation scripts (`automations/`, `docgen/`)
23
+
- automation and docgen scripts (`automations/`, `docgen/`)
24
24
25
25
3. **Follow Style Guides:**
26
26
- **Code/Docs:** Run [Pre-PR checks](#pre-pr-checks). Match existing code style.
@@ -66,13 +66,13 @@ We welcome:
66
66
- ✅ **Provide Context:** Describe the problem, solution, and link related issues.
67
67
- ✅ **Pass CI:** Fix any GitHub Actions failures before requesting review.
68
68
- ✅ **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).
70
70
71
71
## <a id="pre-pr-checks"></a>🔍 Pre-PR Checks
72
72
73
73
Run these before submitting a PR:
74
74
75
-
1. **Build &verify internal links:**
75
+
1. **Build &check internal links:**
76
76
77
77
```bash
78
78
npm run build
@@ -90,30 +90,30 @@ Run these before submitting a PR:
90
90
lychee --config lychee.toml .
91
91
```
92
92
93
-
4. **If you modified examples**, run their formatters/tests:
94
-
(examplefor 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.
0 commit comments