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 <feross@feross.org>
6-
- Mathias Buus <mathiasbuus@gmail.com>
7-
- thermatk <thermatk@thermatk.com>
8-
- fisch0920 <fisch0920@gmail.com>
9-
- Aliaksei Sapach <aliaksei.dreamsonic@gmail.com>
10-
- John Hiesey <john@hiesey.com>
11-
- hicom150 <necrox666@gmail.com>
12-
- Theadd <pantallazo@gmail.com>
13-
- Astro <astro@spaceboyz.net>
14-
- Anthony MOI <xn1t0x@gmail.com>
15-
- Max Ogden <max@maxogden.com>
16-
- Sidd Sridharan <sidd@sidd.com>
17-
- Nick Rafter <nicholas.rafter@gmail.com>
18-
- zckevin <zckevinzc@gmail.com>
19-
- Michael Williams <dinosaur@riseup.net>
20-
- Garret Buell <gmbuell@gmail.com>
21-
- Linus Unnebäck <linus@folkdatorn.se>
22-
- Aram Drevekenin <aram@onetwotrade.com>
23-
- Gustavo Rodrigues <qgustavor@gmail.com>
24-
- Alex <alxmorais8@msn.com>
25-
- Harsh Vakharia <harshjv@users.noreply.github.com>
26-
- Yoann Ciabaud <yoann@sonora.io>
27-
- Diego Rodríguez Baquero <DiegoRBaquero@users.noreply.github.com>
28-
- Autarc <autarc@gmail.com>
29-
- Kirill Fomichev <fanatid@ya.ru>
30-
- Matt Bell <mappum@gmail.com>
31-
- Philipp Henkel <henkel@users.noreply.github.com>
32-
- jakefb <jacobafb@gmail.com>
33-
- Nick Frost <nickfrostatx@gmail.com>
5+
- Feross Aboukhadijeh (feross@feross.org)
6+
- Mathias Buus (mathiasbuus@gmail.com)
7+
- thermatk (thermatk@thermatk.com)
8+
- fisch0920 (fisch0920@gmail.com)
9+
- Aliaksei Sapach (aliaksei.dreamsonic@gmail.com)
10+
- John Hiesey (john@hiesey.com)
11+
- hicom150 (necrox666@gmail.com)
12+
- Theadd (pantallazo@gmail.com)
13+
- Astro (astro@spaceboyz.net)
14+
- Anthony MOI (xn1t0x@gmail.com)
15+
- Max Ogden (max@maxogden.com)
16+
- Sidd Sridharan (sidd@sidd.com)
17+
- Nick Rafter (nicholas.rafter@gmail.com)
18+
- zckevin (zckevinzc@gmail.com)
19+
- Michael Williams (dinosaur@riseup.net)
20+
- Garret Buell (gmbuell@gmail.com)
21+
- Linus Unnebäck (linus@folkdatorn.se)
22+
- Aram Drevekenin (aram@onetwotrade.com)
23+
- Gustavo Rodrigues (qgustavor@gmail.com)
24+
- Alex (alxmorais8@msn.com)
25+
- Harsh Vakharia (harshjv@users.noreply.github.com)
26+
- Yoann Ciabaud (yoann@sonora.io)
27+
- Diego Rodríguez Baquero (DiegoRBaquero@users.noreply.github.com)
28+
- Autarc (autarc@gmail.com)
29+
- Kirill Fomichev (fanatid@ya.ru)
30+
- Matt Bell (mappum@gmail.com)
31+
- Philipp Henkel (henkel@users.noreply.github.com)
32+
- jakefb (jacobafb@gmail.com)
33+
- Nick Frost (nickfrostatx@gmail.com)
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)