Popularity
1.4
Declining
Activity
0.0
Stable
0
2
0
Monthly Downloads: 1
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
Development
Latest version: v0.1.0
normalize-imports alternatives and similar packages
Based on the "Development" category.
Alternatively, view normalize-imports alternatives based on common mentions on social networks and blogs.
-
hadolint
Dockerfile linter, validate inline bash, written in Haskell -
ShellCheck
ShellCheck, a static analysis tool for shell scripts -
fay-base
A proper subset of Haskell that compiles to JavaScript -
criterion
A powerful but simple library for measuring the performance of Haskell code. -
stgi
A user-centric visual STG implementation to help understand GHC/Haskell's execution model. -
retrie
Retrie is a powerful, easy-to-use codemodding tool for Haskell. -
cabal-install-parsers
Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations -
haskell-lsp
Haskell library for the Microsoft Language Server Protocol -
structured-haskell-mode
Structured editing minor mode for Haskell in Emacs -
inline-c
Write Haskell source files including C code inline. No FFI required. -
inline-java
Haskell/Java interop via inline Java code in Haskell modules. -
gi-atk
Generate Haskell bindings for GObject-Introspection capable libraries -
gtk2hs-buildtools
GUI library for Haskell based on GTK+ -
lambdabot-core
A friendly IRC bot and apprentice coder, written in Haskell. -
c2hs
c2hs is a pre-processor for Haskell FFI bindings to C libraries -
hie-bios
Set up a GHC API session for various Haskell Projects -
lambdabot
A friendly IRC bot and apprentice coder, written in Haskell. -
scion
OLD, DEPRECATED: Use this instead https://github.com/haskell/haskell-ide-engine -
uhc-light
Part of UHC packaged as cabal/hackage installable library
Less time debugging, more time building
Scout APM allows you to find and fix performance issues with no hassle. Now with error monitoring and external services monitoring, Scout is a developer's best friend when it comes to application development.
Promo
scoutapm.com
Do you think we are missing an alternative of normalize-imports or a related project?
Popular Comparisons
README
normalize-imports
Install
$ stack install
Sort and align Haskell import statements
Given a file
import Foo
import qualified Bar
import FooBar
import Baz
when you run :%!normalize-imports
in Vim, you will get
import qualified Bar
import Foo
import Baz
import FooBar
(better still, map it in your .vimrc
, e.g. map <Leader>f :%!normalize-import <CR>