-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
37 lines (29 loc) · 1.13 KB
/
Copy pathCODEOWNERS
File metadata and controls
37 lines (29 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# CODEOWNERS file for dsa-python project
# This file defines who owns specific parts of the codebase.
# Each line is a file pattern followed by one or more owners.
# More info: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Global ownership - Animesh owns everything by default
* @Animesh8349
# Core project configuration files
pyproject.toml @Animesh8349
poetry.lock @Animesh8349
.gitignore @Animesh8349
# Documentation
README.md @Animesh8349
docs/ @Animesh8349
# Source code structure
src/data_structures/ @Animesh8349
src/algorithms/ @Animesh8349
# Tests
tests/ @Animesh8349
# GitHub configuration and workflows
.github/ @Animesh8349
.github/CODEOWNERS @Animesh8349
# CI/CD and automation
.github/workflows/ @Animesh8349
# Example entries for future collaborators (commented out):
# If you add collaborators in the future, uncomment and modify these:
# src/algorithms/sorting/ @contributor-username
# src/algorithms/searching/ @contributor-username
# src/data_structures/trees/ @contributor-username
# src/data_structures/graphs/ @contributor-username