Popularity
1.7
Declining
Activity
0.0
Stable
0
3
0

Monthly Downloads: 10
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.

Do you think we are missing an alternative of normalize-imports or a related project?

Add another 'Development' Package

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>