diff --git a/shake-ext.cabal b/shake-ext.cabal
--- a/shake-ext.cabal
+++ b/shake-ext.cabal
@@ -1,5 +1,5 @@
 name:                shake-ext
-version:             0.4.0.1
+version:             0.4.0.2
 synopsis:            Helper functions for linting with shake 
 description:         This package provides several linters out of the box, as well as functionality for building ATS source files with [shake](http://shakebuild.com/).
 homepage:            https://hub.darcs.net/vmchale/shake-ext
diff --git a/src/Development/Shake/Linters.hs b/src/Development/Shake/Linters.hs
--- a/src/Development/Shake/Linters.hs
+++ b/src/Development/Shake/Linters.hs
@@ -7,7 +7,7 @@
                                  , ghc
                                  , atsfmt
                                  , stylishHaskell
-                                 , checkDhall
+                                 , dhall
                                  , module Development.Shake.FileDetect
                                  ) where
 
@@ -15,6 +15,9 @@
 import           Data.Char                    (isSpace)
 import           Development.Shake
 import           Development.Shake.FileDetect
+
+dhall :: Action ()
+dhall = mapM_ checkDhall =<< getDhall
 
 checkDhall :: FilePath -> Action ()
 checkDhall dh = do
