aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--XMonad/Doc/Developing.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/XMonad/Doc/Developing.hs b/XMonad/Doc/Developing.hs
index 714b930..3436db8 100644
--- a/XMonad/Doc/Developing.hs
+++ b/XMonad/Doc/Developing.hs
@@ -256,6 +256,9 @@ xmonad contributed extensions.
* Code should be compilable with "ghc-options: -Wall -Werror" set in the
xmonad-contrib.cabal file. There should be no warnings.
+* Code should be free of any warnings or errors from the Hlint tool; use your
+ best judgement on some warnings like eta-reduction or bracket removal, though.
+
* Partial functions should be avoided: the window manager should not
crash, so never call 'error' or 'undefined'.