Get support for banzaicloud/banzailint

If you're new to LTH, please see our FAQ for more information on what it is we do.

Support Options

Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:

View Open Issues

Take a look to see if anyone else has experienced the same issue as you and if they managed to solve it.

Open an Issue

Make sure to read any relevant guidelines for opening issues on this repo before posting a new issue.

Sponsor directly

Check out the page and see if there are any options to sponsor this project or it's developers directly.

banzaicloud/banzailint

Banzai Linter

CircleCI Go Report Card

Custom lint rules for Banzai Cloud code.

Installation

Download prebuilt binaries from the Releases page.

A common use case for this linter is to be used in a Makefile:

OS = $(shell uname | tr A-Z a-z)

# ...

BANZAILINT_VERSION = 0.0.1

# ...

bin/banzailint: bin/banzailint-${BANZAILINT_VERSION}
	@ln -sf banzailint-${BANZAILINT_VERSION} bin/banzailint
bin/banzailint-${BANZAILINT_VERSION}:
	@mkdir -p bin
	curl -L https://github.com/banzaicloud/banzailint/releases/download/v${BANZAILINT_VERSION}/banzailint_${BANZAILINT_VERSION}_${OS}_amd64.tar.gz | tar -zOxf - banzailint > ./bin/banzailint-${BANZAILINT_VERSION} && chmod +x ./bin/banzailint-${BANZAILINT_VERSION}

.PHONY: lint
lint: bin/banzailint
	bin/banzailint

Alternatively, you can install it from source:

go get github.com/banzaicloud/banzailint

License

The Apache 2.0 License. Please see License File for more information.

Our Mission

We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.

Interesting Articles

Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated

p-e622a1a2