Procházet zdrojové kódy

Add BUILD.bazel as another Bazel file type

This seems to be preferred now, though both are valid.
Michael Hackner před 6 roky
rodič
revize
e3fc2de088
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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( &[
         file.name.to_lowercase().starts_with("readme") || file.name_is_one_of( &[
             "Makefile", "Cargo.toml", "SConstruct", "CMakeLists.txt",
             "Makefile", "Cargo.toml", "SConstruct", "CMakeLists.txt",
             "build.gradle", "Rakefile", "Gruntfile.js",
             "build.gradle", "Rakefile", "Gruntfile.js",
-            "Gruntfile.coffee", "BUILD", "WORKSPACE", "build.xml"
+            "Gruntfile.coffee", "BUILD", "BUILD.bazel", "WORKSPACE", "build.xml"
         ])
         ])
     }
     }