Currently identify has support for `BUILD` and `BUILD.bazel` files. it would be good to add support for `*.BUILD` files as well. In case its helpful, here is the relevant regex that should describe a bazel file, when matching against a filepath: ```regex ^(.*/)?(BUILD\.bazel|BUILD)$|\.BUILD$ ```