make lint-fix ignore for messenger_handlers.go (#4181)
* make lint-fix ignore messenger_handlers.go * make lint-fix
This commit is contained in:
parent
b6acf16fd1
commit
311e463eed
1
Makefile
1
Makefile
|
@ -294,6 +294,7 @@ lint-fix:
|
|||
-and -not -name '*.pb.go' \
|
||||
-and -not -name 'bindata*' \
|
||||
-and -not -name 'migrations.go' \
|
||||
-and -not -name 'messenger_handlers.go' \
|
||||
-and -not -wholename '*/vendor/*' \
|
||||
-exec goimports \
|
||||
-local 'github.com/ethereum/go-ethereum,github.com/status-im/status-go,github.com/status-im/markdown' \
|
||||
|
|
|
@ -8,10 +8,11 @@ import (
|
|||
"regexp"
|
||||
"strings"
|
||||
|
||||
"github.com/status-im/markdown"
|
||||
"go.uber.org/zap"
|
||||
"golang.org/x/net/publicsuffix"
|
||||
|
||||
"github.com/status-im/markdown"
|
||||
|
||||
"github.com/status-im/status-go/multiaccounts/settings"
|
||||
"github.com/status-im/status-go/protocol/common"
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue