Last active
May 26, 2018 19:35
-
-
Save DarinM223/7fb21c8d067886638d73228d611db347 to your computer and use it in GitHub Desktop.
My Haskell defaults (paste into hpack generated stack project)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default-extensions: | |
- BangPatterns | |
- ConstraintKinds | |
- DataKinds | |
- DefaultSignatures | |
- DeriveFoldable | |
- DeriveFunctor | |
- DeriveGeneric | |
- DeriveLift | |
- DeriveTraversable | |
- DerivingStrategies | |
- DuplicateRecordFields | |
- EmptyCase | |
- ExistentialQuantification | |
- FlexibleContexts | |
- FlexibleInstances | |
- FunctionalDependencies | |
- GADTs | |
- GeneralizedNewtypeDeriving | |
- InstanceSigs | |
- KindSignatures | |
- LambdaCase | |
- MultiParamTypeClasses | |
- OverloadedStrings | |
- PatternSynonyms | |
- RankNTypes | |
- ScopedTypeVariables | |
- StandaloneDeriving | |
- TupleSections | |
- TypeApplications | |
- TypeFamilies | |
- TypeFamilyDependencies | |
- TypeOperators | |
ghc-options: | |
- -W | |
- -Wcompat | |
- -Wincomplete-record-updates | |
- -Wincomplete-uni-patterns | |
- -Wredundant-constraints | |
- -fshow-hole-constraints |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment