diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-01-21 14:42:13 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-01-21 14:45:02 -0500 |
commit | 43f5430c06a5bbdeebd5a7a0ee28009b47a5cf53 (patch) | |
tree | e6752bbb564248c7615bd430d8bd99142bff4ff0 | |
parent | 38d837a46ea8f34da6eed4e83e72ad699317a74b (diff) | |
download | haskell-wip/add-codeowners.tar.gz |
Add CODEOWNERSwip/add-codeowners
GitLab uses this file to suggest reviewers based upon the files that a Merge
Request touches.
[skip-ci]
-rw-r--r-- | CODEOWNERS | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000000..c18323bc9e --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,22 @@ +# Confused about what this is? See +# https://gitlab.haskell.org/help/user/project/code_owners + +# Catch-all +* @bgamari + +# Build system +/hadrian @snowleopard @alp @DavidEichmann + +# RTS-like things +/rts @bgamari @simonmar @osa1 @Phyx +/includes @bgamari @simonmar @osa1 + +# The compiler +/compiler/typecheck @simonpj @goldfire +/compiler/rename @simonpj @goldfire +/compiler/rename @simonpj @goldfire +/compiler/typecheck/TcDeriv* @RyanGlScott +/compiler/nativeGen @simonmar @bgamari @AndreasK + +# Core libraries +/libraries/base @hvr |