We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently identify has support for BUILD and BUILD.bazel files. it would be good to add support for *.BUILD files as well.
BUILD
BUILD.bazel
*.BUILD
In case its helpful, here is the relevant regex that should describe a bazel file, when matching against a filepath:
^(.*/)?(BUILD\.bazel|BUILD)$|\.BUILD$
The text was updated successfully, but these errors were encountered:
can you provide a reference for this? as far as I can tell in the official bazel docs they only use BUILD or BUILD.bazel
Sorry, something went wrong.
Here you go! https://docs.bazel.build/versions/1.2.0/external.html#depending-on-non-bazel-projects
Common to have a third_party folder, with dep1.BUILD, dep2.BUILD, to bazelify non bazel projects
third_party
No branches or pull requests
Currently identify has support for
BUILD
andBUILD.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:
The text was updated successfully, but these errors were encountered: