Add BUILD.bazel as another Bazel file type

This seems to be preferred now, though both are valid.
This commit is contained in:
Michael Hackner 2019-07-17 01:05:33 -07:00
parent 479fdea02c
commit e3fc2de088

View File

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