Browse Source

Add BUILD.bazel as another Bazel file type

This seems to be preferred now, though both are valid.
Michael Hackner 6 years ago
parent
commit
e3fc2de088
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/info/filetype.rs

+ 1 - 1
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"
         ])
     }