From e3fc2de08820fb07a9c0619bddf412a3667c218c Mon Sep 17 00:00:00 2001 From: Michael Hackner Date: Wed, 17 Jul 2019 01:05:33 -0700 Subject: [PATCH] Add BUILD.bazel as another Bazel file type This seems to be preferred now, though both are valid. --- src/info/filetype.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/info/filetype.rs b/src/info/filetype.rs index a0ebfa1..2fcd962 100644 --- a/src/info/filetype.rs +++ b/src/info/filetype.rs @@ -23,7 +23,7 @@ impl FileExtensions { file.name.to_lowercase().starts_with("readme") || file.name_is_one_of( &[ "Makefile", "Cargo.toml", "SConstruct", "CMakeLists.txt", "build.gradle", "Rakefile", "Gruntfile.js", - "Gruntfile.coffee", "BUILD", "WORKSPACE", "build.xml" + "Gruntfile.coffee", "BUILD", "BUILD.bazel", "WORKSPACE", "build.xml" ]) }