Popularity
1.6
Stable
Activity
0.0
Stable
0
3
0
Monthly Downloads: 7
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.
-
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!
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

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>