mirror of
https://github.com/go-task/task.git
synced 2024-12-04 10:24:45 +02:00
630e58767b
* feat: resolve references using templating syntax * refactor: moved when references are resolved to one place * fix: linter * docs: update map variables doc
19 lines
382 B
YAML
19 lines
382 B
YAML
# NOTE(@andreynering): The linters listed here are additions on top of
|
|
# those enabled by default:
|
|
#
|
|
# https://golangci-lint.run/usage/linters/#enabled-by-default
|
|
|
|
linters:
|
|
enable:
|
|
- goimports
|
|
- gofmt
|
|
- gofumpt
|
|
|
|
linters-settings:
|
|
goimports:
|
|
local-prefixes: github.com/go-task
|
|
gofmt:
|
|
rewrite-rules:
|
|
- pattern: 'interface{}'
|
|
replacement: 'any'
|