-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCODEOWNERS
More file actions
91 lines (73 loc) · 1.83 KB
/
CODEOWNERS
File metadata and controls
91 lines (73 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# CODEOWNERS file for lsa_evaluate
# Each line is a file pattern followed by one or more owners.
# Order is important; the last matching pattern takes precedence.
# Default owners for everything in the repo
* @rsmoke
#################################################
# Repository Configuration
#################################################
# GitHub specific files and workflows
/.github/ @rsmoke
# Configuration files
/config/ @rsmoke
/.ruby-version @rsmoke
/.tool-versions @rsmoke
/.rubocop.yml @rsmoke
/.rspec @rsmoke
/.gitattributes @rsmoke
/.gitignore @rsmoke
/.babelrc @rsmoke
/jest.config.js @rsmoke
/Capfile @rsmoke
/Procfile.dev @rsmoke
/Rakefile @rsmoke
/config.ru @rsmoke
# Dependency management
/Gemfile @rsmoke
/Gemfile.lock @rsmoke
/package.json @rsmoke
/yarn.lock @rsmoke
#################################################
# Application Code
#################################################
# Core application code
/app/ @rsmoke
# MVC Components
/app/models/ @rsmoke
/app/views/ @rsmoke
/app/controllers/ @rsmoke
# Frontend assets
/app/assets/ @rsmoke
/app/javascript/ @rsmoke
# Additional application components
/app/helpers/ @rsmoke
/app/mailers/ @rsmoke
/app/jobs/ @rsmoke
/app/channels/ @rsmoke
/app/policies/ @rsmoke
/app/services/ @rsmoke
/app/forms/ @rsmoke
/app/inputs/ @rsmoke
# Database related files
/db/ @rsmoke
# Library code
/lib/ @rsmoke
/lib/tasks/ @rsmoke
/lib/capistrano/ @rsmoke
#################################################
# Testing and Documentation
#################################################
# Test files
/spec/ @rsmoke
# Documentation
*.md @rsmoke
/LICENSE @rsmoke
#################################################
# Public and Binary Files
#################################################
# Public files
/public/ @rsmoke
# Binary and storage directories
/bin/ @rsmoke
/vendor/ @rsmoke
/storage/ @rsmoke