Merge pull request #531 from HackAttack/build-dot-bazel

Add BUILD.bazel as another Bazel file type
This commit is contained in:
Benjamin Sago 2019-07-17 14:08:04 +01:00 committed by GitHub
commit 4c73a33530
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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