├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Data ├── Config.hs └── Config │ └── Internal │ ├── AST.hs │ ├── DkM.hs │ ├── Parser.hs │ ├── Pos.hs │ ├── Reg.hs │ ├── Register.hs │ ├── Rename.hs │ ├── Scoped.hs │ ├── Typecheck.hs │ └── Typed.hs ├── LICENSE ├── README.md ├── Setup.hs ├── deiko-config.cabal └── examples └── app.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Data/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config.hs -------------------------------------------------------------------------------- /Data/Config/Internal/AST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/AST.hs -------------------------------------------------------------------------------- /Data/Config/Internal/DkM.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/DkM.hs -------------------------------------------------------------------------------- /Data/Config/Internal/Parser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/Parser.hs -------------------------------------------------------------------------------- /Data/Config/Internal/Pos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/Pos.hs -------------------------------------------------------------------------------- /Data/Config/Internal/Reg.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/Reg.hs -------------------------------------------------------------------------------- /Data/Config/Internal/Register.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/Register.hs -------------------------------------------------------------------------------- /Data/Config/Internal/Rename.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/Rename.hs -------------------------------------------------------------------------------- /Data/Config/Internal/Scoped.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/Scoped.hs -------------------------------------------------------------------------------- /Data/Config/Internal/Typecheck.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/Typecheck.hs -------------------------------------------------------------------------------- /Data/Config/Internal/Typed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/Data/Config/Internal/Typed.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /deiko-config.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/deiko-config.cabal -------------------------------------------------------------------------------- /examples/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoEight/deiko-config/HEAD/examples/app.conf --------------------------------------------------------------------------------