base-noprelude alternatives and similar packages
Based on the "Development" category.
Alternatively, view base-noprelude alternatives based on common mentions on social networks and blogs.
-
cabal-install-parsers
Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations -
fourmolu
A fourk of ormolu that uses four space indentation and allows arbitrary configuration. Don't like it? PRs welcome!
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of base-noprelude or a related project?
Popular Comparisons
README
base-noprelude
- base
package sans Prelude
This package is, as the title gives away, a base
-replacement that allows to define and/or use custom Prelude
s without having to use the -XNoImplicitePrelude
language extension (or use import Prelude ()
). I.e. instead of
{-# LANGUAGE NoImplicitPrelude #-}
module Main where
import CustomPrelude
import OtherStuff
by having a build-depends
on base-noprelude
instead of base
and having a Prelude
module in scope (can be provided by the current package or a 3rd package from build-depends
), one can just write
module Main where
import OtherStuff