Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Jun 12, 2019
  2. Apr 12, 2019
  3. Nov 24, 2018
  4. Feb 16, 2018
  5. Nov 17, 2017
  6. Oct 26, 2017
    • Herbert Valerio Riedel's avatar
      Relax coding guideline regarding module imports · d291bd1c
      Herbert Valerio Riedel authored
      I notice imports like
      
          import qualified Text.PrettyPrint as Disp
                ( Doc, render, char, text )
      
      which seem overly precise to me, when `Disp.` is only used
      locally as a module prefix, and there's no other imports sharing
      the same module prefix.
      
      Instead, it should suffice to either use
      
          import qualified Text.PrettyPrint as Disp
      
      or
      
          import Text.PrettyPrint
                ( Doc, render, char, text )
      
      or in rare cases even
      
          import Text.PrettyPrint as Disp
                ( Doc, render, char, text )
      
      Hence this relaxes the coding guidelines to allow these simpler forms
      to be used.
      
      [skip ci]
      d291bd1c
  7. Oct 20, 2017
    • Moritz Angermann's avatar
      Add note regarding bootstrap to the main README.md · 68b6f6d3
      Moritz Angermann authored
      I've been failing to find this information a few times already. And I still remember not being able to find it the first time, without searching for quite a while. I hope this adds clarity to installing Cabal without cabal, and those who end up with just an unpacked ghc an no cabal to use.
      68b6f6d3
  8. Jul 05, 2017
  9. May 07, 2017
  10. Mar 07, 2017
  11. Mar 06, 2017
  12. Jan 22, 2017
  13. Jan 13, 2017
  14. Dec 07, 2016
  15. Oct 31, 2016
  16. Sep 16, 2016
  17. Sep 06, 2016
  18. Sep 04, 2016
  19. Aug 31, 2016
  20. Jul 26, 2016
  21. Jul 21, 2016
  22. Jul 17, 2016
  23. Jul 16, 2016
  24. Jul 15, 2016
  25. Jul 14, 2016
  26. May 05, 2016
  27. Feb 09, 2016
  28. Oct 02, 2014
  29. Jul 06, 2014
  30. Apr 15, 2014
Loading