-
-
Notifications
You must be signed in to change notification settings - Fork 217
/
CODEOWNERS
Validating CODEOWNERS rules...
61 lines (46 loc) · 1.47 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
# Lines starting with a '#' 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 repository.
# * @global-owner1 @global-owner2
# The 'docs/*' pattern will match files like
# 'docs/getting-started.md' but not further nested files like
# 'docs/build-app/troubleshooting.md'.
# docs/* @doc-owner-team
# You can also use email addresses if the user isn't on GitHub.
# *.py admin@example.com
# You can use a '*' at the end of a pattern to match all files
# of a particular type.
# *.* @all-file-types-owner
# Order is important. The last matching pattern has the most precedence.
# This means if a pull request touches both *.js and *.css files,
# it will only request a review from @js-owner, not @css-owner.
# *.js @js-owner
# *.css @css-owner
# Nix files
*.nix @cafkafk
# Documentation
*.md @cafkafk
# Configuration
*.toml @cafkafk
# Version bumps
Cargo.lock @cafkafk
# Testing, builds, etc
devtools/* @cafkafk
tests/* @cafkafk
xtests/* @cafkafk
# Debian files
devtools/deb-package.sh @gierens
deb.asc @gierens
# Nushell completions
completions/nush/* @PThorpe92
# Grid + Output
src/output/grid.rs @PThorpe92
src/output/grid_details.rs @PThorpe92
src/output/file_name.rs @PThorpe92 @gierens
# Config + config parsing
src/options/config.rs @PThorpe92 @gierens
src/options/theme.rs @PThorpe92 @gierens
src/theme/* @PThorpe92 @gierens
themes/* @PThorpe92 @gierens
# Options parsing
src/options/* @MartinFillon