Skip to content

Commit a6069e2

Browse files
authored
Merge pull request #2 from ReactSphere/copilot/add-all-need-files
Add LICENSE, .gitignore, and fix Contributors.md filename inconsistency
2 parents af0922a + 9e43f24 commit a6069e2

File tree

4 files changed

+49
-6
lines changed

4 files changed

+49
-6
lines changed

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# OS generated files
2+
.DS_Store
3+
.DS_Store?
4+
._*
5+
.Spotlight-V100
6+
.Trashes
7+
ehthumbs.db
8+
Thumbs.db
9+
10+
# Editor files
11+
.vscode/
12+
.idea/
13+
*.swp
14+
*.swo
15+
*~
16+
17+
# Logs
18+
*.log
19+
npm-debug.log*
20+
21+
# Dependencies
22+
node_modules/

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ git checkout -b add-your-name
3737

3838
### 4️⃣ Add Your Name
3939

40-
Open (or create) the `CONTRIBUTORS.md` file and add your name in this format:
40+
Open the `Contributors.md` file and add your name in this format:
4141

4242
```md
4343
* [Your Name](https://github.com/your-username)
@@ -50,7 +50,7 @@ Open (or create) the `CONTRIBUTORS.md` file and add your name in this format:
5050
### 5️⃣ Commit Your Changes
5151

5252
```bash
53-
git add CONTRIBUTORS.md
53+
git add Contributors.md
5454
git commit -m "Add Your Name to contributors list"
5555
```
5656

@@ -77,7 +77,7 @@ Once your PR is merged, you are officially an open-source contributor.
7777

7878
## 📌 Contribution Guidelines
7979

80-
- Only modify `CONTRIBUTORS.md`
80+
- Only modify `Contributors.md`
8181
- Add your name in the correct format
8282
- Keep pull requests focused on a single change
8383
- Be respectful and kind to other contributors

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 ReactSphere
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ git checkout -b add-your-name
6161

6262
### 5️⃣ Add Your Name
6363

64-
Open (or create) a file named `CONTRIBUTORS.md`.
64+
Open the `Contributors.md` file.
6565

6666
Add your name using this format:
6767

@@ -76,7 +76,7 @@ Add your name using this format:
7676
### 6️⃣ Commit Your Changes
7777

7878
```bash
79-
git add CONTRIBUTORS.md
79+
git add Contributors.md
8080
git commit -m "Add Your Name to contributors list"
8181
```
8282

@@ -102,7 +102,7 @@ git push origin add-your-name
102102

103103
## 📌 Contribution Guidelines
104104

105-
- Only modify `CONTRIBUTORS.md`
105+
- Only modify `Contributors.md`
106106
- Add your name in the correct format
107107
- Keep pull requests focused on a single change
108108
- Be respectful and supportive

0 commit comments

Comments
 (0)