Skip to content

Commit 64cb427

Browse files
committed
chore: Add contributing.md
1 parent 3bf6ace commit 64cb427

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

CONTRIBUTING.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Contributing to bmssp-js
2+
3+
Thank you for your interest in contributing to **bmssp-js**! Your help is appreciated.
4+
5+
## Getting Started
6+
7+
1. **Fork the repository** and clone it locally.
8+
2. Install dependencies:
9+
```bash
10+
npm install
11+
```
12+
3. Create a new branch for your feature or bugfix:
13+
```bash
14+
git checkout -b your-feature-name
15+
```
16+
17+
## Development
18+
19+
- Follow the existing code style and conventions.
20+
- Write clear, concise commit messages.
21+
- Add or update tests as appropriate.
22+
23+
## Running Tests
24+
25+
Run all tests with:
26+
```bash
27+
npm test
28+
```
29+
30+
## Submitting Changes
31+
32+
1. Push your branch to your fork.
33+
2. Open a pull request against the `main` branch.
34+
3. Describe your changes and reference any related issues.
35+
36+
## Code of Conduct
37+
38+
Please be respectful and considerate in all interactions.
39+
40+
---
41+
42+
Thank you for contributing!

0 commit comments

Comments
 (0)