aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Doc/Developing.hs
diff options
context:
space:
mode:
authorgwern0 <gwern0@gmail.com>2010-05-06 18:05:35 +0200
committergwern0 <gwern0@gmail.com>2010-05-06 18:05:35 +0200
commitc79c215f08d1c0e5a99d6583754fd723bf7b9a6a (patch)
tree7c0c5380112c08a4475c7aea797afcd506bffcf9 /XMonad/Doc/Developing.hs
parentb5b8a337365c7e9560b3d57fcd0a0934023b11af (diff)
downloadXMonadContrib-c79c215f08d1c0e5a99d6583754fd723bf7b9a6a.tar.gz
XMonadContrib-c79c215f08d1c0e5a99d6583754fd723bf7b9a6a.tar.xz
XMonadContrib-c79c215f08d1c0e5a99d6583754fd723bf7b9a6a.zip
Developing: be good to mention hlint in a hacking guide
Ignore-this: d86ab58539dd6c09a43789b9a549aa9d darcs-hash:20100506160535-f7719-082e5201bc6b70a85228fb8f7749f7e1c2100ff7.gz
Diffstat (limited to 'XMonad/Doc/Developing.hs')
-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'.