diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown
--- a/CHANGELOG.markdown
+++ b/CHANGELOG.markdown
@@ -1,3 +1,7 @@
+0.7.3
+-----
+* Ensure that `HLint.hs` is shipped with the library
+
 0.7.2
 -----
 * Revamp `Setup.hs` to use `cabal-doctest`. This makes it build
diff --git a/HLint.hs b/HLint.hs
new file mode 100644
--- /dev/null
+++ b/HLint.hs
@@ -0,0 +1,9 @@
+import "hint" HLint.HLint
+
+ignore "Reduce duplication"
+ignore "Redundant lambda"
+ignore "Use >=>"
+ignore "Use const"
+ignore "Eta reduce"
+ignore "Avoid lambda"
+ignore "Use newtype instead of data"
diff --git a/folds.cabal b/folds.cabal
--- a/folds.cabal
+++ b/folds.cabal
@@ -1,6 +1,6 @@
 name:          folds
 category:      Data, Comonads, Enumerator
-version:       0.7.2
+version:       0.7.3
 license:       BSD3
 cabal-version: >= 1.8
 license-file:  LICENSE
@@ -19,6 +19,7 @@
   .gitignore
   .vim.custom
   CHANGELOG.markdown
+  HLint.hs
   README.markdown
 
 description: This package is a playground full of comonadic folds.
