├── .gitignore ├── .omnifmt.yaml ├── .stylish-haskell.yaml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── app ├── Git │ └── Fmt │ │ ├── Options.hs │ │ ├── Pipes.hs │ │ └── Version.hs └── Main.hs ├── git-fmt.cabal └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | 3 | -------------------------------------------------------------------------------- /.omnifmt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/.omnifmt.yaml -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Git/Fmt/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/app/Git/Fmt/Options.hs -------------------------------------------------------------------------------- /app/Git/Fmt/Pipes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/app/Git/Fmt/Pipes.hs -------------------------------------------------------------------------------- /app/Git/Fmt/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/app/Git/Fmt/Version.hs -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/app/Main.hs -------------------------------------------------------------------------------- /git-fmt.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/git-fmt.cabal -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwylde/git-fmt/HEAD/stack.yaml --------------------------------------------------------------------------------