From 50076493a6de0253fc98210948b41463ac5202e6 Mon Sep 17 00:00:00 2001 From: Oleg Kovalov Date: Mon, 10 Jun 2024 12:54:13 +0200 Subject: [PATCH] chore: use gofumpt --- .golangci.yml | 2 +- Makefile | 1 + fraudserv/store.go | 4 +--- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 2e94058..99bb19b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -63,6 +63,6 @@ linters-settings: misspell: locale: US goimports: - local-prefixes: github.com/celestiaorg/celestia-node + local-prefixes: github.com/celestiaorg dupl: threshold: 200 diff --git a/Makefile b/Makefile index 60449ac..3f65ad6 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ fmt: @find . -name '*.go' -type f -not -path "*.git*" -not -name '*.pb.go' -not -name '*pb_test.go' | xargs gofmt -w -s @find . -name '*.go' -type f -not -path "*.git*" -not -name '*.pb.go' -not -name '*pb_test.go' | xargs goimports -w -local github.com/celestiaorg @go mod tidy -compat=1.17 + @gofumpt -w -extra . @cfmt -w -m=100 ./... .PHONY: fmt diff --git a/fraudserv/store.go b/fraudserv/store.go index d321064..f22968c 100644 --- a/fraudserv/store.go +++ b/fraudserv/store.go @@ -15,9 +15,7 @@ import ( "github.com/celestiaorg/go-fraud" ) -var ( - storePrefix = "fraud" -) +var storePrefix = "fraud" // put adds a Fraud Proof to the datastore with the given hash as the key. func put(ctx context.Context, ds datastore.Datastore, hash string, value []byte) error {