From b736f672e7b0a0a45de77e2e24ec9c5d5b3c9a22 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Fri, 7 Oct 2016 09:39:20 -0700 Subject: [PATCH] [lint] check copyright notices for Reason files too Summary: Long overdue... Reviewed By: akotulski Differential Revision: D3981122 fbshipit-source-id: 562be34 --- infer/src/scripts/checkCopyright.ml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/infer/src/scripts/checkCopyright.ml b/infer/src/scripts/checkCopyright.ml index e1d49c739..d153c1e89 100644 --- a/infer/src/scripts/checkCopyright.ml +++ b/infer/src/scripts/checkCopyright.ml @@ -187,6 +187,8 @@ let com_style_of_lang = [ (".mli", comment_style_ocaml); (".mly", comment_style_c); (".mll", comment_style_ocaml); + (".re", comment_style_c); + (".rei", comment_style_c); (".c", comment_style_c); (".h", comment_style_c); (".cpp", comment_style_c);