OCaml.gitignore: Ignore binary files containing info about compilation

See https://ocaml.org/manual/comp.html#s:comp-overview.
This commit is contained in:
Idir Lankri 2022-04-07 16:15:24 +02:00
parent 2fa9e45ac4
commit 7b2ef3fdff
No known key found for this signature in database
GPG Key ID: 403FE1E31C030F8B

View File

@ -8,6 +8,13 @@
*.cmxs
*.cmxa
# Files containing detailed information about the compilation (generated
# by `ocamlc`/`ocamlopt` when invoked using the option `-bin-annot`).
# These files are typically useful for code inspection tools
# (e.g. Merlin).
*.cmt
*.cmti
# ocamlbuild and Dune default working directory
_build/