Downloads:
2,626
Downloads of v 7.3.1:
282
Last Update:
06 Sep 2024
Package Maintainer(s):
Software Author(s):
- bazelbuild
Tags:
buildtools bazel build buildifier- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
buildifier
- 1
- 2
- 3
7.3.1 | Updated: 06 Sep 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
2,626
Downloads of v 7.3.1:
282
Maintainer(s):
Software Author(s):
- bazelbuild
buildifier 7.3.1
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by bazelbuild. The inclusion of bazelbuild trademark(s), if any, upon this webpage is solely to identify bazelbuild goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install buildifier, run the following command from the command line or from PowerShell:
To upgrade buildifier, run the following command from the command line or from PowerShell:
To uninstall buildifier, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download buildifier --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade buildifier -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade buildifier -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install buildifier
win_chocolatey:
name: buildifier
version: '7.3.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'buildifier' do
action :install
source 'INTERNAL REPO URL'
version '7.3.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller buildifier
{
Name = "buildifier"
Version = "7.3.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'buildifier':
ensure => '7.3.1',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 19 Dec 2024.
Buildifier
buildifier is a tool for formatting bazel BUILD and .bzl files with a standard convention.
Usage
Use buildifier to create standardized formatting for BUILD and .bzl files in the
same way that clang-format is used for source files.
$ buildifier path/to/file
You can also process multiple files at once:
$ buildifier path/to/file1 path/to/file2
You can make buildifier automatically find all Starlark files (i.e. BUILD, WORKSPACE, .bzl, or .sky)
in a directory recursively:
$ buildifier -r path/to/dir
Buildifier supports the following file types: BUILD
, WORKSPACE
, .bzl
, and
default, the latter is reserved for Starlark files buildifier doesn't know about
(e.g. configuration files for third-party projects that use Starlark). The
formatting rules for WORKSPACE files are the same as for BUILD files (both are
declarative and have stricter formatting rules), and default files are formatted
similarly to .bzl files, allowing more flexibility. Different linter warnings
may be limited to any subset of these file types, e.g. a certain warning may be
only relevant to Bazel files (i.e. BUILD
, WORKSPACE
, and .bzl
) or to
non-WORKSPACE files.
Buildifier automatically detects the file type by its filename, taking into
account optional prefixes and suffixes, e.g. BUILD
, BUILD.oss
, or
BUILD.bazel
will be detected as BUILD files, and build_defs.bzl.oss
is a
.bzl file. Files with unknown names (e.g. foo.bar
) or files passed via stdin
will be treated as default file type. To override the automatic file type
detection use the --type
flag explicitly:
$ cat foo.bar | buildifier --type=build
$ cat foo.bar | buildifier --type=bzl
$ cat foo.bar | buildifier --type=workspace
$ cat foo.bar | buildifier --type=default
Log in or click on link to see number of positives.
- buildifier.7.3.1.nupkg (d431df598da9) - ## / 65
- buildifier-windows-amd64.exe (370cd576075a) - ## / 74
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
buildifier 7.3.1 | 282 | Friday, September 6, 2024 | Approved | |
buildifier 6.1.1 | 910 | Wednesday, April 26, 2023 | Approved | |
buildifier 6.1.0 | 126 | Thursday, March 30, 2023 | Approved | |
buildifier 6.0.1 | 121 | Wednesday, February 1, 2023 | Approved | |
buildifier 6.0.0 | 98 | Tuesday, January 10, 2023 | Approved | |
buildifier 5.1.0 | 274 | Thursday, April 14, 2022 | Approved | |
buildifier 5.0.1 | 126 | Friday, February 11, 2022 | Approved | |
buildifier 5.0.0 | 73 | Wednesday, February 9, 2022 | Approved | |
buildifier 4.2.5 | 99 | Saturday, January 22, 2022 | Approved | |
buildifier 4.2.4 | 92 | Friday, December 3, 2021 | Approved | |
buildifier 4.2.3 | 95 | Tuesday, October 26, 2021 | Approved | |
buildifier 4.2.2 | 127 | Thursday, October 7, 2021 | Approved | |
buildifier 4.2.0 | 103 | Monday, September 6, 2021 | Approved | |
buildifier 4.0.1 | 100 | Thursday, August 19, 2021 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about buildifier and the buildifier package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or buildifier, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.