├── .gitignore ├── .stylish-haskell.yaml ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── app ├── Actions.hs ├── ExitCode.hs ├── Main.hs ├── Options.hs └── Types.hs ├── hfmt.cabal ├── hfmt.sublime-project ├── package.yaml ├── src ├── Language │ └── Haskell │ │ ├── Format.hs │ │ ├── Format │ │ ├── HIndent.hs │ │ ├── HLint.hs │ │ ├── Internal.hs │ │ ├── Stylish.hs │ │ ├── Types.hs │ │ └── Utilities.hs │ │ └── Source │ │ └── Enumerator.hs └── Path │ └── Find.hs ├── stack.yaml ├── stack.yaml.lock └── test ├── pure └── Spec.hs └── self-formatting └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Actions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/app/Actions.hs -------------------------------------------------------------------------------- /app/ExitCode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/app/ExitCode.hs -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/app/Main.hs -------------------------------------------------------------------------------- /app/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/app/Options.hs -------------------------------------------------------------------------------- /app/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/app/Types.hs -------------------------------------------------------------------------------- /hfmt.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/hfmt.cabal -------------------------------------------------------------------------------- /hfmt.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/hfmt.sublime-project -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/package.yaml -------------------------------------------------------------------------------- /src/Language/Haskell/Format.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Language/Haskell/Format.hs -------------------------------------------------------------------------------- /src/Language/Haskell/Format/HIndent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Language/Haskell/Format/HIndent.hs -------------------------------------------------------------------------------- /src/Language/Haskell/Format/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Language/Haskell/Format/HLint.hs -------------------------------------------------------------------------------- /src/Language/Haskell/Format/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Language/Haskell/Format/Internal.hs -------------------------------------------------------------------------------- /src/Language/Haskell/Format/Stylish.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Language/Haskell/Format/Stylish.hs -------------------------------------------------------------------------------- /src/Language/Haskell/Format/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Language/Haskell/Format/Types.hs -------------------------------------------------------------------------------- /src/Language/Haskell/Format/Utilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Language/Haskell/Format/Utilities.hs -------------------------------------------------------------------------------- /src/Language/Haskell/Source/Enumerator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Language/Haskell/Source/Enumerator.hs -------------------------------------------------------------------------------- /src/Path/Find.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/src/Path/Find.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/pure/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/test/pure/Spec.hs -------------------------------------------------------------------------------- /test/self-formatting/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danstiner/hfmt/HEAD/test/self-formatting/Spec.hs --------------------------------------------------------------------------------