Skip to content

Commit

Permalink
Add CODEOWNERS file
Browse files Browse the repository at this point in the history
Resolves #200
  • Loading branch information
emilgoldsmith authored and zanemountcastle committed Sep 10, 2017
1 parent 967930a commit 38ffdb3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
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

0 comments on commit 38ffdb3

Please sign in to comment.