mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
Turn on linter (#16855)
This commit is contained in:
parent
6db2704406
commit
56295a6795
8
.github/workflows/check.yml
vendored
8
.github/workflows/check.yml
vendored
|
@ -19,8 +19,8 @@ jobs:
|
||||||
- name: Run check
|
- name: Run check
|
||||||
run: go run ./cmd/main.go --config=./.github/assets.config.yaml --script=checker
|
run: go run ./cmd/main.go --config=./.github/assets.config.yaml --script=checker
|
||||||
|
|
||||||
# - name: Unit Test
|
- name: Unit Test
|
||||||
# run: make test
|
run: make test
|
||||||
|
|
||||||
# - name: Lint
|
- name: Lint
|
||||||
# run: make lint
|
run: make lint
|
8
.github/workflows/pr-ci.yml
vendored
8
.github/workflows/pr-ci.yml
vendored
|
@ -23,8 +23,8 @@ jobs:
|
||||||
- name: Run check
|
- name: Run check
|
||||||
run: go run ./cmd/main.go --config=./.github/assets.config.yaml --script=checker
|
run: go run ./cmd/main.go --config=./.github/assets.config.yaml --script=checker
|
||||||
|
|
||||||
# - name: Unit Test
|
- name: Unit Test
|
||||||
# run: make test
|
run: make test
|
||||||
|
|
||||||
# - name: Lint
|
- name: Lint
|
||||||
# run: make lint
|
run: make lint
|
|
@ -137,6 +137,7 @@ func (s *Service) GetUpdatersAuto() []Updater {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// nolint:godot
|
||||||
func (s *Service) GetUpdatersManual() []Updater {
|
func (s *Service) GetUpdatersManual() []Updater {
|
||||||
return []Updater{
|
return []Updater{
|
||||||
{
|
{
|
||||||
|
|
|
@ -8,6 +8,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
fileLib "github.com/trustwallet/assets-go-libs/file"
|
fileLib "github.com/trustwallet/assets-go-libs/file"
|
||||||
"github.com/trustwallet/assets-go-libs/image"
|
"github.com/trustwallet/assets-go-libs/image"
|
||||||
"github.com/trustwallet/assets-go-libs/path"
|
"github.com/trustwallet/assets-go-libs/path"
|
||||||
|
|
|
@ -113,6 +113,7 @@ var (
|
||||||
PrimaryTokensSmartChain = []string{"WBNB", "BNB"}
|
PrimaryTokensSmartChain = []string{"WBNB", "BNB"}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// nolint:dupl
|
||||||
func (s *Service) UpdateEthereumTokenlist() error {
|
func (s *Service) UpdateEthereumTokenlist() error {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"limit_liquidity": UniswapMinLiquidity,
|
"limit_liquidity": UniswapMinLiquidity,
|
||||||
|
@ -194,6 +195,7 @@ func (s *Service) UpdatePolygonTokenlist() error {
|
||||||
return rebuildTokenList(chain, pairs, PolygonSwapForceExclude)
|
return rebuildTokenList(chain, pairs, PolygonSwapForceExclude)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// nolint:dupl
|
||||||
func (s *Service) UpdateSmartchainTokenlist() error {
|
func (s *Service) UpdateSmartchainTokenlist() error {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"limit_liquidity": PancakeSwapMinLiquidity,
|
"limit_liquidity": PancakeSwapMinLiquidity,
|
||||||
|
@ -202,7 +204,8 @@ func (s *Service) UpdateSmartchainTokenlist() error {
|
||||||
}).Debug("Retrieving pairs from PancakeSwap")
|
}).Debug("Retrieving pairs from PancakeSwap")
|
||||||
|
|
||||||
tradingPairs, err := retrievePairs(PancakeSwapTradingPairsUrl, PancakeSwapTradingPairsQuery,
|
tradingPairs, err := retrievePairs(PancakeSwapTradingPairsUrl, PancakeSwapTradingPairsQuery,
|
||||||
PancakeSwapMinLiquidity, PancakeSwapMinVol24, PancakeSwapMinTxCount24, PancakeSwapForceInclude, PrimaryTokensSmartChain)
|
PancakeSwapMinLiquidity, PancakeSwapMinVol24, PancakeSwapMinTxCount24,
|
||||||
|
PancakeSwapForceInclude, PrimaryTokensSmartChain)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user