home · contact · privacy
Fix pre-commit script ignoring most source files for linting.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 17 Mar 2025 08:39:06 +0000 (09:39 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 17 Mar 2025 08:39:06 +0000 (09:39 +0100)
scripts/pre-commit

index a8c4fd4d779419fa8ef4ea727cf5a915ac14b935..a311f84f2ce3a1e515dd391468a51e1af37f6187 100755 (executable)
@@ -3,7 +3,6 @@ set -e
 
 echo "===[ Running linters on source directories. ]==="
 DIRS='src src/taskplom tests'
-DIRS=tests
 for DIR in $DIRS; do
     lintplom "${DIR}"
 done