From 83b4fc909f64234d08dbdcfde2127a1e10ae0eea Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Wed, 26 Feb 2020 16:20:53 +0100 Subject: [PATCH] indent dune --- dune | 8 ++++---- dune-project | 14 ++++++++------ 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/dune b/dune index aa0c969..de23e0f 100644 --- a/dune +++ b/dune @@ -33,8 +33,8 @@ ) (rule - (alias runtest) -; (action (diff test.expected.ml test.actual.ml)) -; (action (run diff -w test.expected.ml test.actual.ml)) ; does not work: https://github.com/ocaml/dune/issues/697#issuecomment-590785703 - (action (diff test.expected.ml test.actual.norm.ml)) + (alias runtest) + ; (action (diff test.expected.ml test.actual.ml)) + ; (action (run diff -w test.expected.ml test.actual.ml)) ; does not work: https://github.com/ocaml/dune/issues/697#issuecomment-590785703 + (action (diff test.expected.ml test.actual.norm.ml)) ) diff --git a/dune-project b/dune-project index 6aaa58c..e0aeda9 100644 --- a/dune-project +++ b/dune-project @@ -10,9 +10,11 @@ (license MIT) (package - (name ppx_distr_guards) - (synopsis "Extension to distribute guards over or-patterns") - (description "`function%distr A x, _ | _, A x when p x -> e` will result in `function A x, _ when p x -> e | _, A x when p x -> e`") - (depends - (dune (>= 2.3.0)) - (ocaml-migrate-parsetree (>= 1.6.0)))) + (name ppx_distr_guards) + (synopsis "Extension to distribute guards over or-patterns") + (description "`function%distr A x, _ | _, A x when p x -> e` will result in `function A x, _ when p x -> e | _, A x when p x -> e`") + (depends + (dune (>= 2.3.0)) + (ocaml-migrate-parsetree (>= 1.6.0)) + ) +)