@@ -39,27 +39,44 @@ pub(crate) fn parse(args: Vec<String>) -> clap::ArgMatches {
39
39
. takes_value ( true ) ,
40
40
)
41
41
. 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
+ )
63
80
. get_matches_from ( args)
64
81
}
65
82
0 commit comments