diff options
author | EuAndreh <eu@euandre.org> | 2022-10-20 12:36:54 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-20 12:36:54 -0300 |
commit | 02e6cb2407490cb70bc6006f7ba8efe69b2428bc (patch) | |
tree | c0b4acb87af791be896c20ce343ee417d7bb245b | |
parent | Fix all ShellCheck warnings (diff) | |
download | dotfiles-02e6cb2407490cb70bc6006f7ba8efe69b2428bc.tar.gz dotfiles-02e6cb2407490cb70bc6006f7ba8efe69b2428bc.tar.xz |
Makefile: Exclude subroutine lint of perlcritic
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ check-shellcheck: check-perlcritic: git ls-files | \ xargs awk '/^#!\/usr\/bin\/env perl$$/ { print FILENAME } { nextfile }' | \ - xargs perlcritic + xargs perlcritic --exclude=subroutine check-fixme: if git grep FIXME -- ':(exclude)Makefile'; then \ |