Buildifer fixes and remove unused config#2025
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request streamlines the project's build and CI setup by removing an outdated Travis CI configuration and improving the local linting experience. It also applies consistent formatting across various Bazel build files, enhancing readability and maintainability. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Ignored Files
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request primarily focuses on code cleanup and improving the development tooling. It successfully removes the obsolete .travis.yml configuration and applies buildifier formatting across numerous Bazel files, which standardizes the code style. Additionally, the knife script has been enhanced to support a --check mode for the linter. My review includes a suggestion to fix a bug in the find command within the knife script and make it more robust.
knife
Outdated
| exit 1 | ||
| fi | ||
| buildifier -mode=fix $(find . -name 'BUILD*' -o -name 'WORKSPACE*' -o -name '*.bzl' -type f) | ||
| buildifier -mode=$mode $(find . -name 'BUILD*' -o -name 'WORKSPACE*' -o -name '*.bzl' -type f) |
There was a problem hiding this comment.
This line has a couple of issues that could lead to incorrect behavior or errors:
- Incorrect
findlogic: Due to operator precedence,-type fonly applies to the last expression (-name '*.bzl'). This means directories matchingBUILD*orWORKSPACE*could be passed tobuildifier, which is not intended. You should group the-oconditions with parentheses. - Potential for error with many files: Using command substitution (
$(...)) can cause an "Argument list too long" error iffindreturns a large number of files. A more robust approach is to pipe the output offindtoxargs.
Using -print0 with find and -0 with xargs is also recommended to correctly handle filenames containing spaces or other special characters.
find . \( -name 'BUILD*' -o -name 'WORKSPACE*' -o -name '*.bzl' \) -type f -print0 | xargs -0 buildifier -mode="$mode"
|
🌳 🔧 Config Check This pull request has not modified the root BUILD |
Signed-off-by: Appu Goundan <appu@google.com>
905035f to
b826c2d
Compare
|
🌳 🔄 Image Check |
No description provided.