diff --git a/CHANGELOG.md b/CHANGELOG.md index a809320e8..e6910d0a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * [#788](https://github.com/NibiruChain/nibiru/pull/788) - add --overwrite flag to the nibid init call of localnet.sh * [#804](https://github.com/NibiruChain/nibiru/pull/804) - bump ibc-go to v3.1.1 * [#818](https://github.com/NibiruChain/nibiru/pull/818) - fix(localnet.sh): add max leverage to vpools in genesis to fix open-position +* [#819](https://github.com/NibiruChain/nibiru/pull/819) - add golangci-linter using docker in Makefile ### Features diff --git a/Makefile b/Makefile index db6c9e688..2e30d1412 100644 --- a/Makefile +++ b/Makefile @@ -162,6 +162,13 @@ test-sim-benchmark-invariants: -Enabled=true -NumBlocks=1000 -BlockSize=200 \ -Period=1 -Commit=true -Seed=57 -v -timeout 24h +############################################################################### +### Lint ### +############################################################################### + +lint: + docker run -v $(CURDIR):/code -w /code golangci/golangci-lint:v1.47.3-alpine golangci-lint run + .PHONY: \ test-sim-nondeterminism \ test-sim-custom-genesis-fast \