Skip to content

Commit 2f078fd

Browse files
authored
Merge pull request #181 from DevanshuNEU/chore/oss-standards-overhaul
chore: Open Source Repository Standards Overhaul (Phase 1)
2 parents 02b9769 + ca7ed95 commit 2f078fd

17 files changed

Lines changed: 143 additions & 1573 deletions

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig helps maintain consistent coding styles
2+
# https://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
14+
[*.py]
15+
indent_size = 4
16+
17+
[*.md]
18+
trim_trailing_whitespace = false
19+
20+
[Makefile]
21+
indent_style = tab

.github/dependabot.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: 2
2+
updates:
3+
# Python dependencies
4+
- package-ecosystem: "pip"
5+
directory: "/backend"
6+
schedule:
7+
interval: "weekly"
8+
commit-message:
9+
prefix: "chore(deps)"
10+
labels:
11+
- "dependencies"
12+
- "python"
13+
14+
# JavaScript dependencies
15+
- package-ecosystem: "npm"
16+
directory: "/frontend"
17+
schedule:
18+
interval: "weekly"
19+
commit-message:
20+
prefix: "chore(deps)"
21+
labels:
22+
- "dependencies"
23+
- "javascript"
24+
25+
# GitHub Actions
26+
- package-ecosystem: "github-actions"
27+
directory: "/"
28+
schedule:
29+
interval: "monthly"
30+
commit-message:
31+
prefix: "chore(deps)"
32+
labels:
33+
- "dependencies"
34+
- "ci"

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Contributing to CodeIntel
1+
# Contributing to OpenCodeIntel
22

3-
First off, thanks for considering contributing! CodeIntel is better because of people like you.
3+
Thanks for considering contributing! OpenCodeIntel is better because of people like you.
44

55
## Quick Start
66

77
```bash
88
# Fork the repo, then clone
9-
git clone https://github.com/YOUR_USERNAME/codeintel-mcp
10-
cd codeintel-mcp
9+
git clone https://github.com/YOUR_USERNAME/opencodeintel
10+
cd opencodeintel
1111

1212
# Set up backend
1313
cd backend
@@ -138,4 +138,4 @@ Be respectful, constructive, and collaborative. We're all here to build somethin
138138

139139
---
140140

141-
**Thanks for contributing! 🚀**
141+
**Thanks for contributing!**

0 commit comments

Comments
 (0)