From c02bc5bf24b6b48b2b36acef7bba9bd4c184b345 Mon Sep 17 00:00:00 2001 From: Kevin Ji <1146876+kevinji@users.noreply.github.com> Date: Tue, 2 Apr 2024 05:16:21 -0700 Subject: [PATCH] Treat *.ml{i} in Linguist as OCaml (#1828) Summary: A few files (see below) are being interpreted as SML; this corrects Linguist to treat them as OCaml. Screenshot 2024-04-01 at 16 34 37 Pull Request resolved: https://github.com/facebook/infer/pull/1828 Reviewed By: ngorogiannis Differential Revision: D55634827 Pulled By: jvillard fbshipit-source-id: 521cc54713c063ae3bb19100c22b839a4e2efadf --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitattributes b/.gitattributes index 0fd407eb09c..cf9a59b8624 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,3 @@ website/** linguist-documentation +*.ml linguist-language=OCaml +*.mli linguist-language=OCaml