-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
53 lines (45 loc) · 1.86 KB
/
Copy pathCODEOWNERS
File metadata and controls
53 lines (45 loc) · 1.86 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# CODEOWNERS file for the slack-mcp-server project
# Format: file-pattern @owner
# Order is important; the last matching pattern takes precedence.
#######################################
# Repository Default Owner
#######################################
* @Chisanan232
# Software license annotation
/LICENSE @Chisanan232
#######################################
# Source Code
#######################################
/src/。 @Chisanan232
*.py @Chisanan232
#######################################
# Tests
#######################################
/test/ @Chisanan232
#######################################
# Documentation
#######################################
/docs/ @Chisanan232
*.md @Chisanan232
*.mdx @Chisanan232
*.ts @Chisanan232
#######################################
# CI/CD Configuration
#######################################
/.github/ @Chisanan232
/.github/workflows/ @Chisanan232
#######################################
# Build Configuration
#######################################
/pyproject.toml @Chisanan232
/scripts/ @Chisanan232
#######################################
# Code Quality and Testing
#######################################
/.pre-commit-config.yaml @Chisanan232
/pytest.ini @Chisanan232
/.coveragerc @Chisanan232
/mypy.ini @Chisanan232
/.pylintrc @Chisanan232
/sonar-project.properties @Chisanan232
/codecov.yml @Chisanan232