diff options
author | EuAndreh <eu@euandre.org> | 2021-03-08 16:58:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-08 16:58:50 -0300 |
commit | 6fd549f63b28ac9dfc2ce46e702767ad13fd93c6 (patch) | |
tree | 5e79565a9020b71695ef419aada621336c0e29cf | |
parent | aux/guix/manifest.scm: Remove groff package (diff) | |
download | gistatic-6fd549f63b28ac9dfc2ce46e702767ad13fd93c6.tar.gz gistatic-6fd549f63b28ac9dfc2ce46e702767ad13fd93c6.tar.xz |
Add Perl::Critic and B::Lint
Diffstat (limited to '')
-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/ |