-
Notifications
You must be signed in to change notification settings - Fork 18
/
CODEOWNERS
Validating CODEOWNERS rules...
66 lines (48 loc) · 2.41 KB
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.
# More details are here: https://help.github.com/articles/about-codeowners/
# The '*' pattern is global owners.
# Order is important. The last matching pattern has the most precedence.
# The folders are ordered as follows:
# In each subsection folders are ordered first by depth, then alphabetically.
# This should make it easy to add new rules without breaking existing ones.
# Global rule:
* @glotaran/admins
# tooling
/.github @glotaran/admins @glotaran/maintainers
/.* @glotaran/admins @glotaran/maintainers
/*.y*ml @glotaran/admins @glotaran/maintainers
/*.ini @glotaran/admins @glotaran/maintainers
/*.toml @glotaran/admins @glotaran/maintainers
/*.txt @glotaran/admins @glotaran/maintainers
LICENSE @glotaran/pyglotaran_creators
# docs
/docs/**/*.rst @glotaran/maintainers @glotaran/pyglotaran_creators
# /docs/**/*.md @glotaran/maintainers @glotaran/pyglotaran_creators
# analysis module:
/glotaran/analysis/ @jsnel @joernweissenborn
# builtin module:
/glotaran/builtin/io/* @glotaran/admins
/glotaran/builtin/io/ascii @jsnel @glotaran/maintainers
/glotaran/builtin/io/pandas @glotaran/maintainers
/glotaran/builtin/io/netCDF @glotaran/maintainers
/glotaran/builtin/io/sdt @glotaran/maintainers
/glotaran/builtin/megacomplexes/ @jsnel @joernweissenborn
# cli
/glotaran/cli/ @jsnel @glotaran/admins
# examples # Removed in PR #866
# /glotaran/examples/ @jsnel @glotaran/maintainers
# io
/glotaran/io/ @jsnel @glotaran/maintainers
# model
/glotaran/model/ @jsnel @glotaran/admins @joernweissenborn
# parameter
/glotaran/parameter/ @jsnel @glotaran/admins @joernweissenborn
# plugin_system
glotaran/plugin_system @s-weigand @glotaran/admins
# deprecation framework and tests
glotaran/deprecation @s-weigand @glotaran/admins
# utility function
glotaran/utils @s-weigand @glotaran/admins
# project
/glotaran/project/ @jsnel @glotaran/admins