Skip to content

Commit cb35e58

Browse files
committed
Improve AUTHORS.md formatting
1 parent bd3a967 commit cb35e58

File tree

2 files changed

+34
-34
lines changed

2 files changed

+34
-34
lines changed

AUTHORS.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@
22

33
#### Ordered by first contribution.
44

5-
- Feross Aboukhadijeh <[email protected]>
6-
- Mathias Buus <[email protected]>
7-
- thermatk <[email protected]>
8-
- fisch0920 <[email protected]>
9-
- Aliaksei Sapach <[email protected]>
10-
- John Hiesey <[email protected]>
11-
- hicom150 <[email protected]>
12-
13-
14-
- Anthony MOI <[email protected]>
15-
- Max Ogden <[email protected]>
16-
- Sidd Sridharan <[email protected]>
17-
- Nick Rafter <[email protected]>
18-
- zckevin <[email protected]>
19-
- Michael Williams <[email protected]>
20-
- Garret Buell <[email protected]>
21-
- Linus Unnebäck <[email protected]>
22-
- Aram Drevekenin <[email protected]>
23-
- Gustavo Rodrigues <[email protected]>
24-
25-
- Harsh Vakharia <[email protected]>
26-
- Yoann Ciabaud <[email protected]>
27-
- Diego Rodríguez Baquero <[email protected]>
28-
29-
- Kirill Fomichev <[email protected]>
30-
- Matt Bell <[email protected]>
31-
- Philipp Henkel <[email protected]>
32-
33-
- Nick Frost <[email protected]>
5+
- Feross Aboukhadijeh ([email protected])
6+
- Mathias Buus ([email protected])
7+
- thermatk ([email protected])
8+
- fisch0920 ([email protected])
9+
- Aliaksei Sapach ([email protected])
10+
- John Hiesey ([email protected])
11+
- hicom150 ([email protected])
12+
13+
14+
- Anthony MOI ([email protected])
15+
- Max Ogden ([email protected])
16+
- Sidd Sridharan ([email protected])
17+
- Nick Rafter ([email protected])
18+
- zckevin ([email protected])
19+
- Michael Williams ([email protected])
20+
- Garret Buell ([email protected])
21+
- Linus Unnebäck ([email protected])
22+
- Aram Drevekenin ([email protected])
23+
- Gustavo Rodrigues ([email protected])
24+
25+
- Harsh Vakharia ([email protected])
26+
- Yoann Ciabaud ([email protected])
27+
- Diego Rodríguez Baquero ([email protected])
28+
29+
- Kirill Fomichev ([email protected])
30+
- Matt Bell ([email protected])
31+
- Philipp Henkel ([email protected])
32+
33+
- Nick Frost ([email protected])
3434

3535
#### Generated by bin/update-authors.sh.

bin/update-authors.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#!/bin/sh
22
# Update AUTHORS.md based on git history.
33

4-
git log --reverse --format='%aN <%aE>' | perl -we '
4+
git log --reverse --format='%aN (%aE)' | perl -we '
55
BEGIN {
66
%seen = (), @authors = ();
77
}
88
while (<>) {
99
next if $seen{$_};
10-
next if /<support\@greenkeeper.io>/;
11-
next if /<yoann\@atacma.agency>/;
12-
next if /<yciabaud\@users.noreply.github.com>/;
13-
next if /<diegorbaquero\@gmail.com>/;
10+
next if /(support\@greenkeeper.io)/;
11+
next if /(yoann\@atacma.agency)/;
12+
next if /(yciabaud\@users.noreply.github.com)/;
13+
next if /(diegorbaquero\@gmail.com)/;
1414
$seen{$_} = push @authors, "- ", $_;
1515
}
1616
END {

0 commit comments

Comments
 (0)