635902e592
- Integrated doctests into cabal - Doctest more of the documentation - Remove the (:>) constructor - Give kind signatures to Symbols - Make all constructors typeable - Use stylish-haskell for consistency of styling - Cleanup documentation - Remove old TODO.md
16 lines
422 B
Haskell
16 lines
422 B
Haskell
module Main where
|
|
|
|
import System.FilePath.Find
|
|
import Test.DocTest
|
|
|
|
main :: IO ()
|
|
main = do
|
|
files <- find always (extension ==? ".hs") "src"
|
|
doctest $ [ "-isrc"
|
|
, "-optP-include"
|
|
, "-optPdist/build/autogen/cabal_macros.h"
|
|
, "-XOverloadedStrings"
|
|
, "-XFlexibleInstances"
|
|
, "-XMultiParamTypeClasses"
|
|
] ++ files
|
|
|