├── .git-blame-ignore-revs ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .ocp-indent ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── doc ├── dune └── ocp-indent.md ├── dune-project ├── ocp-indent.opam ├── src ├── ocp-indent-dynlink │ ├── dune │ ├── indentLoader.ml │ └── indentLoader.mli ├── ocp-indent-gen-rules │ ├── dune │ └── main.ml ├── ocp-indent-lexer │ ├── approx_lexer.mll │ ├── approx_tokens.ml │ ├── dune │ ├── indentExtend.ml │ └── indentExtend.mli ├── ocp-indent-lib │ ├── dune │ ├── indentBlock.ml │ ├── indentBlock.mli │ ├── indentConfig.ml │ ├── indentConfig.mli │ ├── indentPrinter.ml │ └── indentPrinter.mli ├── ocp-indent-utils │ ├── compat.ml │ ├── dune │ ├── nstream.ml │ ├── nstream.mli │ ├── pos.ml │ ├── pos.mli │ └── util.ml └── ocp-indent │ ├── dune │ ├── indentArgs.ml │ ├── indentArgs.mli │ └── indentMain.ml ├── tests ├── .ocp-indent ├── failing │ ├── README.md │ ├── dune │ ├── escaped-nl.t │ ├── js-args.t │ ├── js-begin.t │ ├── js-fun.t │ ├── js-functor.t │ ├── js-pattern.t │ ├── js-record.t │ ├── js-syntax.t │ ├── js-to-do.t │ ├── js-upon.t │ └── list_of_funs.t ├── inplace │ ├── dune │ └── run.t ├── ocp-indent-gen-rules │ ├── dune │ └── run.t └── passing │ ├── alignment.t │ ├── bracket.t │ ├── cinaps.t │ ├── comments.t │ ├── core-failing.t │ ├── core-passing.t │ ├── dune │ ├── edge-cases.t │ ├── embedded-match.t │ ├── exprs.t │ ├── extensible.t │ ├── gadt.t │ ├── ifand.t │ ├── indent-empty-1.t │ ├── indent-empty-nm.t │ ├── indent-empty.t │ ├── js-2018.t │ ├── js-and.t │ ├── js-andand.t │ ├── js-applicative.t │ ├── js-bench.t │ ├── js-bind.t │ ├── js-comment.t │ ├── js-comment1.t │ ├── js-default.t │ ├── js-fun-rec.t │ ├── js-label.t │ ├── js-let.t │ ├── js-list.t │ ├── js-low-priority.t │ ├── js-map.t │ ├── js-model.t │ ├── js-pipebang.t │ ├── js-poly.t │ ├── js-ppx-struct.t │ ├── js-sexp.t │ ├── js-str.t │ ├── js-test.t │ ├── js-try.t │ ├── js-type.t │ ├── js-var.t │ ├── let-and.t │ ├── let-open.t │ ├── lwt.t │ ├── macro.t │ ├── match_fun.t │ ├── misc-2018.t │ ├── misc-2019.t │ ├── module.t │ ├── multiline.t │ ├── nested_variants.t │ ├── nesting.t │ ├── never_align.t │ ├── object.t │ ├── obuild.t │ ├── ocamldoc.t │ ├── ocamldoc2.t │ ├── partial-match.t │ ├── partial.t │ ├── partial2.t │ ├── pattern.t │ ├── ppx-string.t │ ├── ppx_expr_ext.t │ ├── ppx_stritem_ext.t │ ├── quotations2.t │ ├── record-with.t │ ├── record_comments.t │ ├── records.t │ ├── semi.t │ ├── semisemi.t │ ├── sequence.t │ ├── str_else_always.t │ ├── str_else_auto.t │ ├── str_else_never.t │ ├── traverse.t │ ├── type-and.t │ ├── types.t │ ├── unit-classes.t │ ├── unit-expr.t │ ├── unit-extensions.t │ ├── unit-lex.t │ ├── unit-modexpr.t │ ├── unit-modtypes.t │ ├── unit-patterns.t │ ├── unit-typedefs.t │ ├── unit-types.t │ ├── unit-values.t │ ├── variants.t │ ├── windows-preserves-crlf.t │ ├── with_2.t │ └── with_never.t └── tools ├── dune ├── ocp-indent.el ├── ocp-indent.vim └── tuareg-indent /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocp-indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/.ocp-indent -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.8.1 2 | -------------------------------------------------------------------------------- /doc/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/doc/dune -------------------------------------------------------------------------------- /doc/ocp-indent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/doc/ocp-indent.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/dune-project -------------------------------------------------------------------------------- /ocp-indent.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/ocp-indent.opam -------------------------------------------------------------------------------- /src/ocp-indent-dynlink/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-dynlink/dune -------------------------------------------------------------------------------- /src/ocp-indent-dynlink/indentLoader.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-dynlink/indentLoader.ml -------------------------------------------------------------------------------- /src/ocp-indent-dynlink/indentLoader.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-dynlink/indentLoader.mli -------------------------------------------------------------------------------- /src/ocp-indent-gen-rules/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-gen-rules/dune -------------------------------------------------------------------------------- /src/ocp-indent-gen-rules/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-gen-rules/main.ml -------------------------------------------------------------------------------- /src/ocp-indent-lexer/approx_lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lexer/approx_lexer.mll -------------------------------------------------------------------------------- /src/ocp-indent-lexer/approx_tokens.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lexer/approx_tokens.ml -------------------------------------------------------------------------------- /src/ocp-indent-lexer/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lexer/dune -------------------------------------------------------------------------------- /src/ocp-indent-lexer/indentExtend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lexer/indentExtend.ml -------------------------------------------------------------------------------- /src/ocp-indent-lexer/indentExtend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lexer/indentExtend.mli -------------------------------------------------------------------------------- /src/ocp-indent-lib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lib/dune -------------------------------------------------------------------------------- /src/ocp-indent-lib/indentBlock.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lib/indentBlock.ml -------------------------------------------------------------------------------- /src/ocp-indent-lib/indentBlock.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lib/indentBlock.mli -------------------------------------------------------------------------------- /src/ocp-indent-lib/indentConfig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lib/indentConfig.ml -------------------------------------------------------------------------------- /src/ocp-indent-lib/indentConfig.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lib/indentConfig.mli -------------------------------------------------------------------------------- /src/ocp-indent-lib/indentPrinter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lib/indentPrinter.ml -------------------------------------------------------------------------------- /src/ocp-indent-lib/indentPrinter.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-lib/indentPrinter.mli -------------------------------------------------------------------------------- /src/ocp-indent-utils/compat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-utils/compat.ml -------------------------------------------------------------------------------- /src/ocp-indent-utils/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-utils/dune -------------------------------------------------------------------------------- /src/ocp-indent-utils/nstream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-utils/nstream.ml -------------------------------------------------------------------------------- /src/ocp-indent-utils/nstream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-utils/nstream.mli -------------------------------------------------------------------------------- /src/ocp-indent-utils/pos.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-utils/pos.ml -------------------------------------------------------------------------------- /src/ocp-indent-utils/pos.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-utils/pos.mli -------------------------------------------------------------------------------- /src/ocp-indent-utils/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent-utils/util.ml -------------------------------------------------------------------------------- /src/ocp-indent/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent/dune -------------------------------------------------------------------------------- /src/ocp-indent/indentArgs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent/indentArgs.ml -------------------------------------------------------------------------------- /src/ocp-indent/indentArgs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent/indentArgs.mli -------------------------------------------------------------------------------- /src/ocp-indent/indentMain.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/src/ocp-indent/indentMain.ml -------------------------------------------------------------------------------- /tests/.ocp-indent: -------------------------------------------------------------------------------- 1 | normal 2 | -------------------------------------------------------------------------------- /tests/failing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/README.md -------------------------------------------------------------------------------- /tests/failing/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/dune -------------------------------------------------------------------------------- /tests/failing/escaped-nl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/escaped-nl.t -------------------------------------------------------------------------------- /tests/failing/js-args.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-args.t -------------------------------------------------------------------------------- /tests/failing/js-begin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-begin.t -------------------------------------------------------------------------------- /tests/failing/js-fun.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-fun.t -------------------------------------------------------------------------------- /tests/failing/js-functor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-functor.t -------------------------------------------------------------------------------- /tests/failing/js-pattern.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-pattern.t -------------------------------------------------------------------------------- /tests/failing/js-record.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-record.t -------------------------------------------------------------------------------- /tests/failing/js-syntax.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-syntax.t -------------------------------------------------------------------------------- /tests/failing/js-to-do.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-to-do.t -------------------------------------------------------------------------------- /tests/failing/js-upon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/js-upon.t -------------------------------------------------------------------------------- /tests/failing/list_of_funs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/failing/list_of_funs.t -------------------------------------------------------------------------------- /tests/inplace/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/inplace/dune -------------------------------------------------------------------------------- /tests/inplace/run.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/inplace/run.t -------------------------------------------------------------------------------- /tests/ocp-indent-gen-rules/dune: -------------------------------------------------------------------------------- 1 | (cram 2 | (deps 3 | (package ocp-indent))) 4 | -------------------------------------------------------------------------------- /tests/ocp-indent-gen-rules/run.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/ocp-indent-gen-rules/run.t -------------------------------------------------------------------------------- /tests/passing/alignment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/alignment.t -------------------------------------------------------------------------------- /tests/passing/bracket.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/bracket.t -------------------------------------------------------------------------------- /tests/passing/cinaps.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/cinaps.t -------------------------------------------------------------------------------- /tests/passing/comments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/comments.t -------------------------------------------------------------------------------- /tests/passing/core-failing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/core-failing.t -------------------------------------------------------------------------------- /tests/passing/core-passing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/core-passing.t -------------------------------------------------------------------------------- /tests/passing/dune: -------------------------------------------------------------------------------- 1 | (cram 2 | (deps 3 | (package ocp-indent))) 4 | -------------------------------------------------------------------------------- /tests/passing/edge-cases.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/edge-cases.t -------------------------------------------------------------------------------- /tests/passing/embedded-match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/embedded-match.t -------------------------------------------------------------------------------- /tests/passing/exprs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/exprs.t -------------------------------------------------------------------------------- /tests/passing/extensible.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/extensible.t -------------------------------------------------------------------------------- /tests/passing/gadt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/gadt.t -------------------------------------------------------------------------------- /tests/passing/ifand.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/ifand.t -------------------------------------------------------------------------------- /tests/passing/indent-empty-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/indent-empty-1.t -------------------------------------------------------------------------------- /tests/passing/indent-empty-nm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/indent-empty-nm.t -------------------------------------------------------------------------------- /tests/passing/indent-empty.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/indent-empty.t -------------------------------------------------------------------------------- /tests/passing/js-2018.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-2018.t -------------------------------------------------------------------------------- /tests/passing/js-and.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-and.t -------------------------------------------------------------------------------- /tests/passing/js-andand.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-andand.t -------------------------------------------------------------------------------- /tests/passing/js-applicative.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-applicative.t -------------------------------------------------------------------------------- /tests/passing/js-bench.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-bench.t -------------------------------------------------------------------------------- /tests/passing/js-bind.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-bind.t -------------------------------------------------------------------------------- /tests/passing/js-comment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-comment.t -------------------------------------------------------------------------------- /tests/passing/js-comment1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-comment1.t -------------------------------------------------------------------------------- /tests/passing/js-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-default.t -------------------------------------------------------------------------------- /tests/passing/js-fun-rec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-fun-rec.t -------------------------------------------------------------------------------- /tests/passing/js-label.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-label.t -------------------------------------------------------------------------------- /tests/passing/js-let.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-let.t -------------------------------------------------------------------------------- /tests/passing/js-list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-list.t -------------------------------------------------------------------------------- /tests/passing/js-low-priority.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-low-priority.t -------------------------------------------------------------------------------- /tests/passing/js-map.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-map.t -------------------------------------------------------------------------------- /tests/passing/js-model.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-model.t -------------------------------------------------------------------------------- /tests/passing/js-pipebang.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-pipebang.t -------------------------------------------------------------------------------- /tests/passing/js-poly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-poly.t -------------------------------------------------------------------------------- /tests/passing/js-ppx-struct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-ppx-struct.t -------------------------------------------------------------------------------- /tests/passing/js-sexp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-sexp.t -------------------------------------------------------------------------------- /tests/passing/js-str.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-str.t -------------------------------------------------------------------------------- /tests/passing/js-test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-test.t -------------------------------------------------------------------------------- /tests/passing/js-try.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-try.t -------------------------------------------------------------------------------- /tests/passing/js-type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-type.t -------------------------------------------------------------------------------- /tests/passing/js-var.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/js-var.t -------------------------------------------------------------------------------- /tests/passing/let-and.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/let-and.t -------------------------------------------------------------------------------- /tests/passing/let-open.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/let-open.t -------------------------------------------------------------------------------- /tests/passing/lwt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/lwt.t -------------------------------------------------------------------------------- /tests/passing/macro.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/macro.t -------------------------------------------------------------------------------- /tests/passing/match_fun.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/match_fun.t -------------------------------------------------------------------------------- /tests/passing/misc-2018.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/misc-2018.t -------------------------------------------------------------------------------- /tests/passing/misc-2019.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/misc-2019.t -------------------------------------------------------------------------------- /tests/passing/module.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/module.t -------------------------------------------------------------------------------- /tests/passing/multiline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/multiline.t -------------------------------------------------------------------------------- /tests/passing/nested_variants.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/nested_variants.t -------------------------------------------------------------------------------- /tests/passing/nesting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/nesting.t -------------------------------------------------------------------------------- /tests/passing/never_align.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/never_align.t -------------------------------------------------------------------------------- /tests/passing/object.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/object.t -------------------------------------------------------------------------------- /tests/passing/obuild.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/obuild.t -------------------------------------------------------------------------------- /tests/passing/ocamldoc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/ocamldoc.t -------------------------------------------------------------------------------- /tests/passing/ocamldoc2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/ocamldoc2.t -------------------------------------------------------------------------------- /tests/passing/partial-match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/partial-match.t -------------------------------------------------------------------------------- /tests/passing/partial.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/partial.t -------------------------------------------------------------------------------- /tests/passing/partial2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/partial2.t -------------------------------------------------------------------------------- /tests/passing/pattern.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/pattern.t -------------------------------------------------------------------------------- /tests/passing/ppx-string.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/ppx-string.t -------------------------------------------------------------------------------- /tests/passing/ppx_expr_ext.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/ppx_expr_ext.t -------------------------------------------------------------------------------- /tests/passing/ppx_stritem_ext.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/ppx_stritem_ext.t -------------------------------------------------------------------------------- /tests/passing/quotations2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/quotations2.t -------------------------------------------------------------------------------- /tests/passing/record-with.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/record-with.t -------------------------------------------------------------------------------- /tests/passing/record_comments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/record_comments.t -------------------------------------------------------------------------------- /tests/passing/records.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/records.t -------------------------------------------------------------------------------- /tests/passing/semi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/semi.t -------------------------------------------------------------------------------- /tests/passing/semisemi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/semisemi.t -------------------------------------------------------------------------------- /tests/passing/sequence.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/sequence.t -------------------------------------------------------------------------------- /tests/passing/str_else_always.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/str_else_always.t -------------------------------------------------------------------------------- /tests/passing/str_else_auto.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/str_else_auto.t -------------------------------------------------------------------------------- /tests/passing/str_else_never.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/str_else_never.t -------------------------------------------------------------------------------- /tests/passing/traverse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/traverse.t -------------------------------------------------------------------------------- /tests/passing/type-and.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/type-and.t -------------------------------------------------------------------------------- /tests/passing/types.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/types.t -------------------------------------------------------------------------------- /tests/passing/unit-classes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-classes.t -------------------------------------------------------------------------------- /tests/passing/unit-expr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-expr.t -------------------------------------------------------------------------------- /tests/passing/unit-extensions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-extensions.t -------------------------------------------------------------------------------- /tests/passing/unit-lex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-lex.t -------------------------------------------------------------------------------- /tests/passing/unit-modexpr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-modexpr.t -------------------------------------------------------------------------------- /tests/passing/unit-modtypes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-modtypes.t -------------------------------------------------------------------------------- /tests/passing/unit-patterns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-patterns.t -------------------------------------------------------------------------------- /tests/passing/unit-typedefs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-typedefs.t -------------------------------------------------------------------------------- /tests/passing/unit-types.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-types.t -------------------------------------------------------------------------------- /tests/passing/unit-values.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/unit-values.t -------------------------------------------------------------------------------- /tests/passing/variants.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/variants.t -------------------------------------------------------------------------------- /tests/passing/windows-preserves-crlf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/windows-preserves-crlf.t -------------------------------------------------------------------------------- /tests/passing/with_2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/with_2.t -------------------------------------------------------------------------------- /tests/passing/with_never.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tests/passing/with_never.t -------------------------------------------------------------------------------- /tools/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tools/dune -------------------------------------------------------------------------------- /tools/ocp-indent.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tools/ocp-indent.el -------------------------------------------------------------------------------- /tools/ocp-indent.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tools/ocp-indent.vim -------------------------------------------------------------------------------- /tools/tuareg-indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCamlPro/ocp-indent/HEAD/tools/tuareg-indent --------------------------------------------------------------------------------