├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .headroom.yaml ├── .hlint.yaml ├── .stylish-haskell.yaml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── Setup.hs ├── app └── Main.hs ├── doc ├── assets │ └── logo.png ├── microsite │ ├── docs │ │ ├── documentation │ │ │ ├── basic-concepts.md │ │ │ ├── configuration.md │ │ │ ├── installation.md │ │ │ ├── post-processing.md │ │ │ ├── project-setup-guide.md │ │ │ ├── running-headroom.md │ │ │ └── templates.md │ │ ├── images │ │ │ ├── logo.png │ │ │ └── norcane-logo.png │ │ ├── index.md │ │ ├── license.md │ │ ├── migration-guide.md │ │ └── whats-new.md │ ├── mkdocs.yml │ └── overrides │ │ └── partials │ │ └── footer.html └── templates │ └── haskell.mustache ├── doctest └── Main.hs ├── embedded ├── config-file.yaml ├── default-config.yaml ├── default-global-config.yaml └── license │ ├── apache2 │ ├── c.mustache │ ├── cpp.mustache │ ├── css.mustache │ ├── dart.mustache │ ├── go.mustache │ ├── haskell.mustache │ ├── html.mustache │ ├── java.mustache │ ├── js.mustache │ ├── kotlin.mustache │ ├── php.mustache │ ├── purescript.mustache │ ├── python.mustache │ ├── rust.mustache │ ├── scala.mustache │ ├── shell.mustache │ └── xml.mustache │ ├── bsd3 │ ├── c.mustache │ ├── cpp.mustache │ ├── css.mustache │ ├── dart.mustache │ ├── go.mustache │ ├── haskell.mustache │ ├── html.mustache │ ├── java.mustache │ ├── js.mustache │ ├── kotlin.mustache │ ├── php.mustache │ ├── purescript.mustache │ ├── python.mustache │ ├── rust.mustache │ ├── scala.mustache │ ├── shell.mustache │ └── xml.mustache │ ├── gpl2 │ ├── c.mustache │ ├── cpp.mustache │ ├── css.mustache │ ├── dart.mustache │ ├── go.mustache │ ├── haskell.mustache │ ├── html.mustache │ ├── java.mustache │ ├── js.mustache │ ├── kotlin.mustache │ ├── php.mustache │ ├── purescript.mustache │ ├── python.mustache │ ├── rust.mustache │ ├── scala.mustache │ ├── shell.mustache │ └── xml.mustache │ ├── gpl3 │ ├── c.mustache │ ├── cpp.mustache │ ├── css.mustache │ ├── dart.mustache │ ├── go.mustache │ ├── haskell.mustache │ ├── html.mustache │ ├── java.mustache │ ├── js.mustache │ ├── kotlin.mustache │ ├── php.mustache │ ├── purescript.mustache │ ├── python.mustache │ ├── rust.mustache │ ├── scala.mustache │ ├── shell.mustache │ └── xml.mustache │ ├── mit │ ├── c.mustache │ ├── cpp.mustache │ ├── css.mustache │ ├── dart.mustache │ ├── go.mustache │ ├── haskell.mustache │ ├── html.mustache │ ├── java.mustache │ ├── js.mustache │ ├── kotlin.mustache │ ├── php.mustache │ ├── purescript.mustache │ ├── python.mustache │ ├── rust.mustache │ ├── scala.mustache │ ├── shell.mustache │ └── xml.mustache │ └── mpl2 │ ├── c.mustache │ ├── cpp.mustache │ ├── css.mustache │ ├── dart.mustache │ ├── go.mustache │ ├── haskell.mustache │ ├── html.mustache │ ├── java.mustache │ ├── js.mustache │ ├── kotlin.mustache │ ├── php.mustache │ ├── purescript.mustache │ ├── python.mustache │ ├── rust.mustache │ ├── scala.mustache │ ├── shell.mustache │ └── xml.mustache ├── fourmolu.yaml ├── headroom.cabal ├── hie.yaml ├── package.yaml ├── src └── Headroom │ ├── Command.hs │ ├── Command │ ├── Bootstrap.hs │ ├── Gen.hs │ ├── Init.hs │ ├── Readers.hs │ ├── Run.hs │ ├── Types.hs │ └── Utils.hs │ ├── Config.hs │ ├── Config │ ├── Compat.hs │ ├── Enrich.hs │ ├── Global.hs │ └── Types.hs │ ├── Data │ ├── Coerce.hs │ ├── EnumExtra.hs │ ├── Has.hs │ ├── Lens.hs │ ├── Regex.hs │ ├── Serialization.hs │ └── Text.hs │ ├── Embedded.hs │ ├── Embedded │ └── TH.hs │ ├── FileSupport.hs │ ├── FileSupport │ ├── C.hs │ ├── CPP.hs │ ├── CSS.hs │ ├── Dart.hs │ ├── Go.hs │ ├── HTML.hs │ ├── Haskell.hs │ ├── Haskell │ │ └── Haddock.hs │ ├── JS.hs │ ├── Java.hs │ ├── Kotlin.hs │ ├── PHP.hs │ ├── PureScript.hs │ ├── Python.hs │ ├── Rust.hs │ ├── Scala.hs │ ├── Shell.hs │ ├── TemplateData.hs │ ├── Types.hs │ └── XML.hs │ ├── FileType.hs │ ├── FileType │ └── Types.hs │ ├── Header.hs │ ├── Header │ ├── Sanitize.hs │ └── Types.hs │ ├── IO │ ├── FileSystem.hs │ ├── KVStore.hs │ └── Network.hs │ ├── Meta.hs │ ├── Meta │ └── Version.hs │ ├── PostProcess.hs │ ├── PostProcess │ ├── Types.hs │ └── UpdateCopyright.hs │ ├── SourceCode.hs │ ├── Template.hs │ ├── Template │ ├── Mustache.hs │ └── TemplateRef.hs │ ├── Types.hs │ ├── UI.hs │ ├── UI │ ├── Message.hs │ ├── Progress.hs │ └── Table.hs │ ├── Updater.hs │ ├── Variables.hs │ └── Variables │ └── Types.hs ├── stack.yaml ├── test-data ├── code-samples │ ├── c │ │ ├── sample1.c │ │ └── sample2.c │ ├── cpp │ │ ├── sample1.cpp │ │ └── sample2.cpp │ ├── css │ │ ├── sample1.css │ │ └── sample2.css │ ├── dart │ │ └── sample1.dart │ ├── go │ │ └── sample1.go │ ├── haskell │ │ ├── full.hs │ │ ├── header-block.hs │ │ ├── header-line.hs │ │ ├── sample1.hs │ │ ├── sample2.hs │ │ └── sample3.hs │ ├── html │ │ ├── sample1.html │ │ └── sample2.html │ ├── java │ │ ├── sample1.java │ │ └── sample2.java │ ├── js │ │ ├── sample1.js │ │ └── sample2.js │ ├── kotlin │ │ └── sample1.kt │ ├── php │ │ └── sample1.php │ ├── purescript │ │ └── full.purs │ ├── python │ │ └── sample1.py │ ├── rust │ │ └── sample1.rs │ ├── scala │ │ ├── sample1.scala │ │ └── sample2.scala │ ├── shell │ │ └── sample1.sh │ └── xml │ │ ├── sample1.xml │ │ └── sample2.xml ├── configs │ └── full.yaml ├── templates │ └── haskell.mustache ├── test-template.mustache ├── test-traverse │ ├── a.html │ └── foo │ │ ├── b.html │ │ ├── bar │ │ └── c.html │ │ └── test.xml └── updater │ └── github-resp.json └── test ├── Headroom ├── Command │ ├── InitSpec.hs │ ├── ReadersSpec.hs │ └── RunSpec.hs ├── Config │ ├── CompatSpec.hs │ ├── EnrichSpec.hs │ └── GlobalSpec.hs ├── ConfigSpec.hs ├── Data │ ├── CoerceSpec.hs │ ├── EnumExtraSpec.hs │ ├── RegexSpec.hs │ ├── SerializationSpec.hs │ └── TextSpec.hs ├── FileSupport │ ├── CPPSpec.hs │ ├── CSSSpec.hs │ ├── CSpec.hs │ ├── DartSpec.hs │ ├── GoSpec.hs │ ├── HTMLSpec.hs │ ├── Haskell │ │ └── HaddockSpec.hs │ ├── HaskellSpec.hs │ ├── JSSpec.hs │ ├── JavaSpec.hs │ ├── KotlinSpec.hs │ ├── PHPSpec.hs │ ├── PureScriptSpec.hs │ ├── PythonSpec.hs │ ├── RustSpec.hs │ ├── ScalaSpec.hs │ └── ShellSpec.hs ├── FileSupportSpec.hs ├── FileTypeSpec.hs ├── Header │ └── SanitizeSpec.hs ├── HeaderSpec.hs ├── IO │ ├── FileSystemSpec.hs │ └── KVStoreSpec.hs ├── Meta │ └── VersionSpec.hs ├── PostProcess │ ├── TypesSpec.hs │ └── UpdateCopyrightSpec.hs ├── PostProcessSpec.hs ├── SourceCodeSpec.hs ├── Template │ ├── MustacheSpec.hs │ └── TemplateRefSpec.hs ├── TypesSpec.hs ├── UI │ ├── MessageSpec.hs │ ├── ProgressSpec.hs │ └── TableSpec.hs ├── UpdaterSpec.hs └── VariablesSpec.hs └── Spec.hs /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @vaclavsvejcar -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/.gitignore -------------------------------------------------------------------------------- /.headroom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/.headroom.yaml -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/app/Main.hs -------------------------------------------------------------------------------- /doc/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/assets/logo.png -------------------------------------------------------------------------------- /doc/microsite/docs/documentation/basic-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/documentation/basic-concepts.md -------------------------------------------------------------------------------- /doc/microsite/docs/documentation/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/documentation/configuration.md -------------------------------------------------------------------------------- /doc/microsite/docs/documentation/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/documentation/installation.md -------------------------------------------------------------------------------- /doc/microsite/docs/documentation/post-processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/documentation/post-processing.md -------------------------------------------------------------------------------- /doc/microsite/docs/documentation/project-setup-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/documentation/project-setup-guide.md -------------------------------------------------------------------------------- /doc/microsite/docs/documentation/running-headroom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/documentation/running-headroom.md -------------------------------------------------------------------------------- /doc/microsite/docs/documentation/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/documentation/templates.md -------------------------------------------------------------------------------- /doc/microsite/docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/images/logo.png -------------------------------------------------------------------------------- /doc/microsite/docs/images/norcane-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/images/norcane-logo.png -------------------------------------------------------------------------------- /doc/microsite/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/index.md -------------------------------------------------------------------------------- /doc/microsite/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/license.md -------------------------------------------------------------------------------- /doc/microsite/docs/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/migration-guide.md -------------------------------------------------------------------------------- /doc/microsite/docs/whats-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/docs/whats-new.md -------------------------------------------------------------------------------- /doc/microsite/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/mkdocs.yml -------------------------------------------------------------------------------- /doc/microsite/overrides/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/microsite/overrides/partials/footer.html -------------------------------------------------------------------------------- /doc/templates/haskell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doc/templates/haskell.mustache -------------------------------------------------------------------------------- /doctest/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/doctest/Main.hs -------------------------------------------------------------------------------- /embedded/config-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/config-file.yaml -------------------------------------------------------------------------------- /embedded/default-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/default-config.yaml -------------------------------------------------------------------------------- /embedded/default-global-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/default-global-config.yaml -------------------------------------------------------------------------------- /embedded/license/apache2/c.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/c.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/cpp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/cpp.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/css.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/css.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/dart.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/dart.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/go.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/go.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/haskell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/haskell.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/html.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/java.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/java.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/js.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/js.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/kotlin.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/kotlin.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/php.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/php.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/purescript.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/purescript.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/python.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/python.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/rust.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/rust.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/scala.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/scala.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/shell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/shell.mustache -------------------------------------------------------------------------------- /embedded/license/apache2/xml.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/apache2/xml.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/c.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/c.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/cpp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/cpp.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/css.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/css.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/dart.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/dart.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/go.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/go.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/haskell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/haskell.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/html.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/java.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/java.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/js.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/js.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/kotlin.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/kotlin.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/php.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/php.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/purescript.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/purescript.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/python.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/python.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/rust.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/rust.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/scala.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/scala.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/shell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/shell.mustache -------------------------------------------------------------------------------- /embedded/license/bsd3/xml.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/bsd3/xml.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/c.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/c.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/cpp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/cpp.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/css.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/css.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/dart.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/dart.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/go.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/go.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/haskell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/haskell.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/html.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/java.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/java.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/js.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/js.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/kotlin.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/kotlin.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/php.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/php.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/purescript.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/purescript.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/python.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/python.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/rust.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/rust.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/scala.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/scala.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/shell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/shell.mustache -------------------------------------------------------------------------------- /embedded/license/gpl2/xml.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl2/xml.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/c.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/c.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/cpp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/cpp.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/css.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/css.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/dart.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/dart.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/go.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/go.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/haskell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/haskell.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/html.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/java.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/java.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/js.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/js.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/kotlin.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/kotlin.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/php.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/php.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/purescript.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/purescript.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/python.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/python.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/rust.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/rust.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/scala.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/scala.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/shell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/shell.mustache -------------------------------------------------------------------------------- /embedded/license/gpl3/xml.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/gpl3/xml.mustache -------------------------------------------------------------------------------- /embedded/license/mit/c.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/c.mustache -------------------------------------------------------------------------------- /embedded/license/mit/cpp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/cpp.mustache -------------------------------------------------------------------------------- /embedded/license/mit/css.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/css.mustache -------------------------------------------------------------------------------- /embedded/license/mit/dart.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/dart.mustache -------------------------------------------------------------------------------- /embedded/license/mit/go.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/go.mustache -------------------------------------------------------------------------------- /embedded/license/mit/haskell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/haskell.mustache -------------------------------------------------------------------------------- /embedded/license/mit/html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/html.mustache -------------------------------------------------------------------------------- /embedded/license/mit/java.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/java.mustache -------------------------------------------------------------------------------- /embedded/license/mit/js.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/js.mustache -------------------------------------------------------------------------------- /embedded/license/mit/kotlin.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/kotlin.mustache -------------------------------------------------------------------------------- /embedded/license/mit/php.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/php.mustache -------------------------------------------------------------------------------- /embedded/license/mit/purescript.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/purescript.mustache -------------------------------------------------------------------------------- /embedded/license/mit/python.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/python.mustache -------------------------------------------------------------------------------- /embedded/license/mit/rust.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/rust.mustache -------------------------------------------------------------------------------- /embedded/license/mit/scala.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/scala.mustache -------------------------------------------------------------------------------- /embedded/license/mit/shell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/shell.mustache -------------------------------------------------------------------------------- /embedded/license/mit/xml.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mit/xml.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/c.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/c.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/cpp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/cpp.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/css.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/css.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/dart.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/dart.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/go.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/go.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/haskell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/haskell.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/html.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/java.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/java.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/js.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/js.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/kotlin.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/kotlin.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/php.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/php.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/purescript.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/purescript.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/python.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/python.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/rust.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/rust.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/scala.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/scala.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/shell.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/shell.mustache -------------------------------------------------------------------------------- /embedded/license/mpl2/xml.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/embedded/license/mpl2/xml.mustache -------------------------------------------------------------------------------- /fourmolu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/fourmolu.yaml -------------------------------------------------------------------------------- /headroom.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/headroom.cabal -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/hie.yaml -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/package.yaml -------------------------------------------------------------------------------- /src/Headroom/Command.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Command.hs -------------------------------------------------------------------------------- /src/Headroom/Command/Bootstrap.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Command/Bootstrap.hs -------------------------------------------------------------------------------- /src/Headroom/Command/Gen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Command/Gen.hs -------------------------------------------------------------------------------- /src/Headroom/Command/Init.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Command/Init.hs -------------------------------------------------------------------------------- /src/Headroom/Command/Readers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Command/Readers.hs -------------------------------------------------------------------------------- /src/Headroom/Command/Run.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Command/Run.hs -------------------------------------------------------------------------------- /src/Headroom/Command/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Command/Types.hs -------------------------------------------------------------------------------- /src/Headroom/Command/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Command/Utils.hs -------------------------------------------------------------------------------- /src/Headroom/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Config.hs -------------------------------------------------------------------------------- /src/Headroom/Config/Compat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Config/Compat.hs -------------------------------------------------------------------------------- /src/Headroom/Config/Enrich.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Config/Enrich.hs -------------------------------------------------------------------------------- /src/Headroom/Config/Global.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Config/Global.hs -------------------------------------------------------------------------------- /src/Headroom/Config/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Config/Types.hs -------------------------------------------------------------------------------- /src/Headroom/Data/Coerce.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Data/Coerce.hs -------------------------------------------------------------------------------- /src/Headroom/Data/EnumExtra.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Data/EnumExtra.hs -------------------------------------------------------------------------------- /src/Headroom/Data/Has.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Data/Has.hs -------------------------------------------------------------------------------- /src/Headroom/Data/Lens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Data/Lens.hs -------------------------------------------------------------------------------- /src/Headroom/Data/Regex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Data/Regex.hs -------------------------------------------------------------------------------- /src/Headroom/Data/Serialization.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Data/Serialization.hs -------------------------------------------------------------------------------- /src/Headroom/Data/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Data/Text.hs -------------------------------------------------------------------------------- /src/Headroom/Embedded.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Embedded.hs -------------------------------------------------------------------------------- /src/Headroom/Embedded/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Embedded/TH.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/C.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/CPP.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/CPP.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/CSS.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/CSS.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Dart.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Dart.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Go.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Go.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/HTML.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/HTML.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Haskell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Haskell.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Haskell/Haddock.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Haskell/Haddock.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/JS.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/JS.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Java.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Java.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Kotlin.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Kotlin.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/PHP.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/PHP.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/PureScript.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/PureScript.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Python.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Python.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Rust.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Rust.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Scala.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Scala.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Shell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Shell.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/TemplateData.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/TemplateData.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/Types.hs -------------------------------------------------------------------------------- /src/Headroom/FileSupport/XML.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileSupport/XML.hs -------------------------------------------------------------------------------- /src/Headroom/FileType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileType.hs -------------------------------------------------------------------------------- /src/Headroom/FileType/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/FileType/Types.hs -------------------------------------------------------------------------------- /src/Headroom/Header.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Header.hs -------------------------------------------------------------------------------- /src/Headroom/Header/Sanitize.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Header/Sanitize.hs -------------------------------------------------------------------------------- /src/Headroom/Header/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Header/Types.hs -------------------------------------------------------------------------------- /src/Headroom/IO/FileSystem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/IO/FileSystem.hs -------------------------------------------------------------------------------- /src/Headroom/IO/KVStore.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/IO/KVStore.hs -------------------------------------------------------------------------------- /src/Headroom/IO/Network.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/IO/Network.hs -------------------------------------------------------------------------------- /src/Headroom/Meta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Meta.hs -------------------------------------------------------------------------------- /src/Headroom/Meta/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Meta/Version.hs -------------------------------------------------------------------------------- /src/Headroom/PostProcess.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/PostProcess.hs -------------------------------------------------------------------------------- /src/Headroom/PostProcess/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/PostProcess/Types.hs -------------------------------------------------------------------------------- /src/Headroom/PostProcess/UpdateCopyright.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/PostProcess/UpdateCopyright.hs -------------------------------------------------------------------------------- /src/Headroom/SourceCode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/SourceCode.hs -------------------------------------------------------------------------------- /src/Headroom/Template.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Template.hs -------------------------------------------------------------------------------- /src/Headroom/Template/Mustache.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Template/Mustache.hs -------------------------------------------------------------------------------- /src/Headroom/Template/TemplateRef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Template/TemplateRef.hs -------------------------------------------------------------------------------- /src/Headroom/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Types.hs -------------------------------------------------------------------------------- /src/Headroom/UI.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/UI.hs -------------------------------------------------------------------------------- /src/Headroom/UI/Message.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/UI/Message.hs -------------------------------------------------------------------------------- /src/Headroom/UI/Progress.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/UI/Progress.hs -------------------------------------------------------------------------------- /src/Headroom/UI/Table.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/UI/Table.hs -------------------------------------------------------------------------------- /src/Headroom/Updater.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Updater.hs -------------------------------------------------------------------------------- /src/Headroom/Variables.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Variables.hs -------------------------------------------------------------------------------- /src/Headroom/Variables/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/src/Headroom/Variables/Types.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-22.43 2 | packages: 3 | - . 4 | -------------------------------------------------------------------------------- /test-data/code-samples/c/sample1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/c/sample1.c -------------------------------------------------------------------------------- /test-data/code-samples/c/sample2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/c/sample2.c -------------------------------------------------------------------------------- /test-data/code-samples/cpp/sample1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/cpp/sample1.cpp -------------------------------------------------------------------------------- /test-data/code-samples/cpp/sample2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/cpp/sample2.cpp -------------------------------------------------------------------------------- /test-data/code-samples/css/sample1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/css/sample1.css -------------------------------------------------------------------------------- /test-data/code-samples/css/sample2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/css/sample2.css -------------------------------------------------------------------------------- /test-data/code-samples/dart/sample1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/dart/sample1.dart -------------------------------------------------------------------------------- /test-data/code-samples/go/sample1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/go/sample1.go -------------------------------------------------------------------------------- /test-data/code-samples/haskell/full.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/haskell/full.hs -------------------------------------------------------------------------------- /test-data/code-samples/haskell/header-block.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/haskell/header-block.hs -------------------------------------------------------------------------------- /test-data/code-samples/haskell/header-line.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/haskell/header-line.hs -------------------------------------------------------------------------------- /test-data/code-samples/haskell/sample1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/haskell/sample1.hs -------------------------------------------------------------------------------- /test-data/code-samples/haskell/sample2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/haskell/sample2.hs -------------------------------------------------------------------------------- /test-data/code-samples/haskell/sample3.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/haskell/sample3.hs -------------------------------------------------------------------------------- /test-data/code-samples/html/sample1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/html/sample1.html -------------------------------------------------------------------------------- /test-data/code-samples/html/sample2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/html/sample2.html -------------------------------------------------------------------------------- /test-data/code-samples/java/sample1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/java/sample1.java -------------------------------------------------------------------------------- /test-data/code-samples/java/sample2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/java/sample2.java -------------------------------------------------------------------------------- /test-data/code-samples/js/sample1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/js/sample1.js -------------------------------------------------------------------------------- /test-data/code-samples/js/sample2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/js/sample2.js -------------------------------------------------------------------------------- /test-data/code-samples/kotlin/sample1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/kotlin/sample1.kt -------------------------------------------------------------------------------- /test-data/code-samples/php/sample1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/php/sample1.php -------------------------------------------------------------------------------- /test-data/code-samples/purescript/full.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/purescript/full.purs -------------------------------------------------------------------------------- /test-data/code-samples/python/sample1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/python/sample1.py -------------------------------------------------------------------------------- /test-data/code-samples/rust/sample1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/rust/sample1.rs -------------------------------------------------------------------------------- /test-data/code-samples/scala/sample1.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/scala/sample1.scala -------------------------------------------------------------------------------- /test-data/code-samples/scala/sample2.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/scala/sample2.scala -------------------------------------------------------------------------------- /test-data/code-samples/shell/sample1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/shell/sample1.sh -------------------------------------------------------------------------------- /test-data/code-samples/xml/sample1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/xml/sample1.xml -------------------------------------------------------------------------------- /test-data/code-samples/xml/sample2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/code-samples/xml/sample2.xml -------------------------------------------------------------------------------- /test-data/configs/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/configs/full.yaml -------------------------------------------------------------------------------- /test-data/templates/haskell.mustache: -------------------------------------------------------------------------------- 1 | Hello, {{ name }} -------------------------------------------------------------------------------- /test-data/test-template.mustache: -------------------------------------------------------------------------------- 1 | Hello, {{user}} -------------------------------------------------------------------------------- /test-data/test-traverse/a.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/test-traverse/foo/b.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/test-traverse/foo/bar/c.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/test-traverse/foo/test.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/updater/github-resp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test-data/updater/github-resp.json -------------------------------------------------------------------------------- /test/Headroom/Command/InitSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Command/InitSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Command/ReadersSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Command/ReadersSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Command/RunSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Command/RunSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Config/CompatSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Config/CompatSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Config/EnrichSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Config/EnrichSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Config/GlobalSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Config/GlobalSpec.hs -------------------------------------------------------------------------------- /test/Headroom/ConfigSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/ConfigSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Data/CoerceSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Data/CoerceSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Data/EnumExtraSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Data/EnumExtraSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Data/RegexSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Data/RegexSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Data/SerializationSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Data/SerializationSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Data/TextSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Data/TextSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/CPPSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/CPPSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/CSSSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/CSSSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/CSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/CSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/DartSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/DartSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/GoSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/GoSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/HTMLSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/HTMLSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/Haskell/HaddockSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/Haskell/HaddockSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/HaskellSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/HaskellSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/JSSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/JSSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/JavaSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/JavaSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/KotlinSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/KotlinSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/PHPSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/PHPSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/PureScriptSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/PureScriptSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/PythonSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/PythonSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/RustSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/RustSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/ScalaSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/ScalaSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupport/ShellSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupport/ShellSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileSupportSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileSupportSpec.hs -------------------------------------------------------------------------------- /test/Headroom/FileTypeSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/FileTypeSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Header/SanitizeSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Header/SanitizeSpec.hs -------------------------------------------------------------------------------- /test/Headroom/HeaderSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/HeaderSpec.hs -------------------------------------------------------------------------------- /test/Headroom/IO/FileSystemSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/IO/FileSystemSpec.hs -------------------------------------------------------------------------------- /test/Headroom/IO/KVStoreSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/IO/KVStoreSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Meta/VersionSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Meta/VersionSpec.hs -------------------------------------------------------------------------------- /test/Headroom/PostProcess/TypesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/PostProcess/TypesSpec.hs -------------------------------------------------------------------------------- /test/Headroom/PostProcess/UpdateCopyrightSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/PostProcess/UpdateCopyrightSpec.hs -------------------------------------------------------------------------------- /test/Headroom/PostProcessSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/PostProcessSpec.hs -------------------------------------------------------------------------------- /test/Headroom/SourceCodeSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/SourceCodeSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Template/MustacheSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Template/MustacheSpec.hs -------------------------------------------------------------------------------- /test/Headroom/Template/TemplateRefSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/Template/TemplateRefSpec.hs -------------------------------------------------------------------------------- /test/Headroom/TypesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/TypesSpec.hs -------------------------------------------------------------------------------- /test/Headroom/UI/MessageSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/UI/MessageSpec.hs -------------------------------------------------------------------------------- /test/Headroom/UI/ProgressSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/UI/ProgressSpec.hs -------------------------------------------------------------------------------- /test/Headroom/UI/TableSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/UI/TableSpec.hs -------------------------------------------------------------------------------- /test/Headroom/UpdaterSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/UpdaterSpec.hs -------------------------------------------------------------------------------- /test/Headroom/VariablesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Headroom/VariablesSpec.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaclavsvejcar/headroom/HEAD/test/Spec.hs --------------------------------------------------------------------------------