diff options
author | narimiran <narimiran@disroot.org> | 2020-11-11 14:02:35 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2020-11-11 14:02:35 +0100 |
commit | b831033db6c0bb7b11128383e8f186912f620fd1 (patch) | |
tree | 3093452ca953d6b22481659f6053e02ecede7d84 | |
parent | 42c434fa3d48356bda8ba0b85cd940385f42edfb (diff) | |
download | Nim-b831033db6c0bb7b11128383e8f186912f620fd1.tar.gz |
remove `codeowners` [ci skip]
-rw-r--r-- | doc/codeowners.rst | 65 | ||||
-rw-r--r-- | doc/contributing.rst | 5 |
2 files changed, 1 insertions, 69 deletions
diff --git a/doc/codeowners.rst b/doc/codeowners.rst deleted file mode 100644 index 4b4a5810e..000000000 --- a/doc/codeowners.rst +++ /dev/null @@ -1,65 +0,0 @@ -=========== -Code owners -=========== - - -Subsystems and code owners --------------------------- - -*Note*: This list is incomplete, in doubt dom96 is responsible for the standard -library, araq is responsible for the compiler. - - -Compiler -~~~~~~~~ - -=========================== ====================================================== -subsystem owner(s) -=========================== ====================================================== -Parsing, Lexing araq -Renderer cooldome, araq -Order of passes cooldome -Semantic Checking araq -Virtual machine jangko, GULPF, araq -Sempass2: effects tracking cooldome, araq -type system, concepts zahary -transf cooldome, araq -semfold constant folding araq -template instantiation zahary, araq -term rewriting macros cooldome, araq -closure iterators yglukhov, araq -lambda lifting yglukhov, araq -c, cpp codegen lemonboy, araq -js codegen yglukhov, lemonboy -alias analysis araq -dfa, writetracking araq -parallel, multithreading araq -incremental araq -sizeof computations krux02 -Exception handling cooldome, araq -=========================== ====================================================== - - - -Standard library -~~~~~~~~~~~~~~~~ - -====================== ====================================================== -subsystem owner(s) -====================== ====================================================== -async dom96 -strutils araq -sequtils dom96, araq -times GULPF -os dom96, araq -re araq -nre flaviu -math, fenv krux02, cooldome -io dom96 -garbage collector araq -Go garbage collector stefantalpalaru -coroutines Rokas Kupstys -collections GULPF -parseopt araq -json dom96 -====================== ====================================================== diff --git a/doc/contributing.rst b/doc/contributing.rst index f570336e2..6ddbd65bc 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -8,11 +8,8 @@ Contributing Contributing happens via "Pull requests" (PR) on github. Every PR needs to be reviewed before it can be merged and the Continuous Integration should be green. -The PR has to be approved (and is often merged too) by one "code owner", either -by the code owner who is responsible for the subsystem the PR belongs to or by -two core developers or by Araq. +The PR has to be approved by two core developers or by Araq. -See `codeowners <codeowners.html>`_ for more details. Writing tests |