From e3c05cf2c83fd1b7448f3af0ea374c87dba2187f Mon Sep 17 00:00:00 2001 From: Andy Li <1450947+andy1li@users.noreply.github.com> Date: Thu, 3 Oct 2024 13:01:04 +0800 Subject: [PATCH] Add .gitignore for OCaml --- compiled_starters/ocaml/.gitignore | 29 +++++++++++++++++++++++++ solutions/ocaml/01-jm1/code/.gitignore | 29 +++++++++++++++++++++++++ starter_templates/ocaml/code/.gitignore | 29 +++++++++++++++++++++++++ 3 files changed, 87 insertions(+) create mode 100644 compiled_starters/ocaml/.gitignore create mode 100644 solutions/ocaml/01-jm1/code/.gitignore create mode 100644 starter_templates/ocaml/code/.gitignore diff --git a/compiled_starters/ocaml/.gitignore b/compiled_starters/ocaml/.gitignore new file mode 100644 index 00000000..d4b6695c --- /dev/null +++ b/compiled_starters/ocaml/.gitignore @@ -0,0 +1,29 @@ +*.annot +*.cmo +*.cma +*.cmi +*.a +*.o +*.cmx +*.cmxs +*.cmxa + +# ocamlbuild working directory +_build/ + +# ocamlbuild targets +*.byte +*.native + +# oasis generated files +setup.data +setup.log + +# Merlin configuring file for Vim and Emacs +.merlin + +# Dune generated files +*.install + +# Local OPAM switch +_opam/ \ No newline at end of file diff --git a/solutions/ocaml/01-jm1/code/.gitignore b/solutions/ocaml/01-jm1/code/.gitignore new file mode 100644 index 00000000..d4b6695c --- /dev/null +++ b/solutions/ocaml/01-jm1/code/.gitignore @@ -0,0 +1,29 @@ +*.annot +*.cmo +*.cma +*.cmi +*.a +*.o +*.cmx +*.cmxs +*.cmxa + +# ocamlbuild working directory +_build/ + +# ocamlbuild targets +*.byte +*.native + +# oasis generated files +setup.data +setup.log + +# Merlin configuring file for Vim and Emacs +.merlin + +# Dune generated files +*.install + +# Local OPAM switch +_opam/ \ No newline at end of file diff --git a/starter_templates/ocaml/code/.gitignore b/starter_templates/ocaml/code/.gitignore new file mode 100644 index 00000000..d4b6695c --- /dev/null +++ b/starter_templates/ocaml/code/.gitignore @@ -0,0 +1,29 @@ +*.annot +*.cmo +*.cma +*.cmi +*.a +*.o +*.cmx +*.cmxs +*.cmxa + +# ocamlbuild working directory +_build/ + +# ocamlbuild targets +*.byte +*.native + +# oasis generated files +setup.data +setup.log + +# Merlin configuring file for Vim and Emacs +.merlin + +# Dune generated files +*.install + +# Local OPAM switch +_opam/ \ No newline at end of file