├── .gitignore ├── .ocp-indent ├── CHANGES.md ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── dune-project ├── easy-format.opam ├── examples ├── dune ├── jsonpp.ml ├── lambda_example.ml ├── sample.json └── simple_example.ml ├── src ├── dune ├── easy_format.ml └── easy_format.mli └── test ├── dune └── test_easy_format.ml /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | _build 3 | .merlin 4 | *.install 5 | -------------------------------------------------------------------------------- /.ocp-indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/.ocp-indent -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/dune-project -------------------------------------------------------------------------------- /easy-format.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/easy-format.opam -------------------------------------------------------------------------------- /examples/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/examples/dune -------------------------------------------------------------------------------- /examples/jsonpp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/examples/jsonpp.ml -------------------------------------------------------------------------------- /examples/lambda_example.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/examples/lambda_example.ml -------------------------------------------------------------------------------- /examples/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/examples/sample.json -------------------------------------------------------------------------------- /examples/simple_example.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/examples/simple_example.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/src/dune -------------------------------------------------------------------------------- /src/easy_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/src/easy_format.ml -------------------------------------------------------------------------------- /src/easy_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/src/easy_format.mli -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/test/dune -------------------------------------------------------------------------------- /test/test_easy_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-community/easy-format/HEAD/test/test_easy_format.ml --------------------------------------------------------------------------------