├── .github ├── CODEOWNERS └── workflows │ └── ci.yml ├── .gitignore ├── .stylish-haskell.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── src └── Type │ └── Errors │ └── Pretty.hs ├── stack.yaml ├── test └── Doctest.hs └── type-errors-pretty.cabal /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @chshersh 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/README.md -------------------------------------------------------------------------------- /src/Type/Errors/Pretty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/src/Type/Errors/Pretty.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-15.8 2 | -------------------------------------------------------------------------------- /test/Doctest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/test/Doctest.hs -------------------------------------------------------------------------------- /type-errors-pretty.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/type-errors-pretty/HEAD/type-errors-pretty.cabal --------------------------------------------------------------------------------