summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-06-17 19:04:09 -0400
committerGitHub <noreply@github.com>2018-06-17 19:04:09 -0400
commitb5def934f4d368a7e1a1fe67a98b3cdcc14cd2d9 (patch)
treefe1df7be2493a99d379c636ac68afdd9239f77db
parentc8b8c49d3a01e462dbb88c43256ec4e27203b39a (diff)
parentb02e3d366fcfb92b9fd8545fdd0737a729547ffa (diff)
downloadcmd2-git-b5def934f4d368a7e1a1fe67a98b3cdcc14cd2d9.tar.gz
Merge pull request #444 from python-cmd2/owners
Updated CODEOWNERS to reflect who the experts are
-rw-r--r--.gitignore4
-rw-r--r--CODEOWNERS40
2 files changed, 44 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 46298801..e1afc390 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,3 +20,7 @@ htmlcov
# mypy optional static type checker
.mypy_cache
+
+# mypy plugin for PyCharm
+dmypy.json
+dmypy.sock
diff --git a/CODEOWNERS b/CODEOWNERS
index c10568d9..daf0ba67 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -12,3 +12,43 @@
# You can also use email addresses if you prefer.
#docs/* docs@example.com
+
+# cmd2 code
+cmd2/__init__.py @tleonhardt @kotfu
+cmd2/arg*.py @anselor
+cmd2/cmd2.py @tleonhardt @kmvanbrunt @kotfu
+cmd2/constants.py @kotfu
+cmd2/parsing.py @kotfu @kmvanbrunt
+cmd2/pyscript*.py @anselor
+cmd2/rl_utils.py @kmvanbrunt
+cmd2/transcript.py @kotfu
+cmd2/utils.py @tleonhardt @kotfu @kmvanbrunt
+
+# Sphinx documentation
+docs/* @tleonhardt @kotfu
+
+# Examples
+examples/env*.py @kotfu
+examples/help*.py @anselor
+examples/tab_au*.py @anselor
+examples/tab_co*.py @kmvanbrunt
+
+# Unit Tests
+tests/pyscript/* @anselor
+tests/transcripts/* @kotfu
+tests/__init__.py @kotfu
+tests/conftest.py @kotfu @tleonhardt
+tests/test_acar*.py @anselor
+tests/test_argp*.py @kotfu
+tests/test_auto*.py @anselor
+tests/test_bash*.py @anselor @tleonhardt
+tests/test_comp*.py @kmvanbrunt
+tests/test_pars*.py @kotfu
+tests/test_pysc*.py @anselor
+tests/test_tran*.py @kotfu
+
+# Top-level project stuff
+CONTRIBUTING.md @tleonhardt @kotfu
+setup.py @tleonhardt @kotfu
+tasks.py @kotfu
+