-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in the repo | ||
* @emilgoldsmith @zanemountcastle | ||
|
||
# Beware that order is important, the last matching pattern has the most precedence. | ||
|
||
# Zane has default ownership of all css and scss files | ||
*.css @zanemountcastle | ||
*.scss @zanemountcastle | ||
|
||
# Zane has ownership of the styles folder | ||
src/styles/* @zanemountcastle | ||
|
||
# Zane has ownership of the components file (but not the editor subfolder | ||
# which will be overwritten in the following definition) | ||
src/components/* @zanemountcastle | ||
|
||
# Emil has ownership over the editor components | ||
src/components/editor/* @emilgoldsmith | ||
|
||
# Emil has ownership over the lib folder | ||
src/lib/* @emilgoldsmith | ||
|
||
# Zane has ownership over the transitions folder | ||
src/transitions/* @zanemountcastle | ||
|
||
# Emil has ownership over client-scripts, server-code folders and index.js | ||
src/client-scripts/* @emilgoldsmith | ||
src/server-code/* @emilgoldsmith | ||
src/index.js @emilgoldsmith |