Skip to content

Commit b475f9a

Browse files
committed
feat: pay in credits
- There is no money to pay with, but there is a big thank you and a place in the credits. - Also pizza if we ever meet in person
1 parent f6556ca commit b475f9a

File tree

1 file changed

+38
-21
lines changed

1 file changed

+38
-21
lines changed

src/alejandra_cli/src/cli.rs

+38-21
Original file line numberDiff line numberDiff line change
@@ -39,27 +39,44 @@ pub(crate) fn parse(args: Vec<String>) -> clap::ArgMatches {
3939
.takes_value(true),
4040
)
4141
.term_width(80)
42-
.after_help(indoc::indoc!(
43-
// Let's just use the same sorting as on GitHub
44-
//
45-
// There are some non-code contributors,
46-
// I'm sorting those subjectively
47-
//
48-
// Feel free to add here your contact/blog/links if you want
49-
"
50-
The program will exit with status code:
51-
1, if any error occurs.
52-
2, if --check was used and any file was changed.
53-
0, otherwise.
54-
55-
Shaped with love by:
56-
Kevin Amado ~ @kamadorueda on GitHub, matrix.org and Gmail.
57-
Thomas Bereknyei ~ @tomberek on GitHub and matrix.org.
58-
David Arnold ~ @blaggacao on GitHub and matrix.org.
59-
Vincent Ambo ~ @tazjin on GitHub.
60-
Mr Hedgehog ~ @ModdedGamers on GitHub.
61-
"
62-
))
42+
.after_help(
43+
#[cfg_attr(rustfmt, rustfmt_skip)]
44+
indoc::indoc!(
45+
// Let's just use the same sorting as on GitHub
46+
//
47+
// There are some non-code contributors,
48+
// I'm sorting those subjectively.
49+
// I've tried to be as just as possible.
50+
//
51+
// Feel free to add here your contact/blog/links if you want
52+
"
53+
The program will exit with status code:
54+
1, if any error occurs.
55+
2, if --check was used and any file was changed.
56+
0, otherwise.
57+
58+
Shaped with love by:
59+
Kevin Amado ~ @kamadorueda on GitHub, matrix.org and Gmail.
60+
Thomas Bereknyei ~ @tomberek on GitHub and matrix.org.
61+
Piegames ~ @piegamesde on GitHub.
62+
Joachim Ernst ~ @0x4A6F on GitHub.
63+
David Arnold ~ @blaggacao on GitHub and matrix.org.
64+
David Hauer ~ @DavHau on GitHub.
65+
Fabian Möller ~ @B4dM4n on GitHub.
66+
Rok Garbas ~ @garbas on GitHub.
67+
Yorick van Pelt ~ @yorickvP on GitHub.
68+
Vincent Ambo ~ @tazjin on GitHub.
69+
Mr Hedgehog ~ @ModdedGamers on GitHub.
70+
Tristan Maat ~ @TLATER on GitHub.
71+
Norbert Melzer ~ @NobbZ on GitHub.
72+
Patrick Stevens ~ @Smaug123 on GitHub.
73+
Florian Finkernagel ~ @TyberiusPrime on GitHub.
74+
75+
Your star and feedback is very much appreciated!
76+
https://github.com/kamadorueda/alejandra
77+
"
78+
),
79+
)
6380
.get_matches_from(args)
6481
}
6582

0 commit comments

Comments
 (0)