diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README.md | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,8 @@ check: all dev-check: check podchecker doc/* + perlcritic --brutal --verbose 9 scripts/gistatic.pl + perl -MO=Lint scripts/gistatic.pl sh aux/assert-perltidy.sh sh aux/assert-shellcheck.sh sh aux/workflow/assert-todos.sh @@ -44,10 +44,13 @@ Documentation available via installed manpages, also available online: [`gistati ## Contributing Extra tools used for development are: +- [Perl::Critic][perlcritic] and [B::Lint][blint] for linting; - [perltidy] for code formatting; - [ShellCheck] for validating scripts; - [pandoc] for generating the documentation HTML and website. +[perlcritic]: https://metacpan.org/pod/Perl::Critic +[blint]: https://metacpan.org/pod/B::Lint [perltidy]: https://metacpan.org/pod/perltidy [ShellCheck]: https://www.shellcheck.net/ [pandoc]: https://pandoc.org/ |