Skip to content

Commit 7d3fee6

Browse files
committed
Fix order of of entries in CODEOWNERS
The last item has *most* precedence not *least*. Entries should be ordered the other way.
1 parent 80b28f4 commit 7d3fee6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
# Each line is a file pattern followed by one or more owners.
88
# Order is important. The last matching pattern has the most precedence.
99

10+
# Owner of anything in SwiftSyntax not owned by anyone else.
11+
* @ahoppen
12+
1013
# Macros
11-
Sources/_SwiftSyntaxMacros @DougGregor
12-
Tests/SwiftSyntaxMacrosTest @DougGregor
14+
/Sources/_SwiftSyntaxMacros @DougGregor
15+
/Tests/SwiftSyntaxMacrosTest @DougGregor
1316

1417
# SwiftOperators
15-
Sources/SwiftOperators @DougGregor
16-
Tests/SwiftOperatorsTest @DougGregor
17-
18-
# Owner of anything in SwiftSyntax not owned by anyone else.
19-
* @ahoppen
18+
/Sources/SwiftOperators @DougGregor
19+
/Tests/SwiftOperatorsTest @DougGregor

0 commit comments

Comments
 (0)