PR adds a new executortype which supports running containers as functions. New CLI under functions is added to create container as functions. Co-authored-by: Harsh Thakur <harshthakur9030@gmail.com> Co-authored-by: Sanket Sudake <sanketsudake@gmail.com>
39 lines
727 B
YAML
39 lines
727 B
YAML
linters:
|
|
enable:
|
|
# Default linter
|
|
- deadcode
|
|
- errcheck
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- staticcheck
|
|
- structcheck
|
|
- typecheck
|
|
- unused
|
|
- varcheck
|
|
# Additional linters
|
|
- gofmt
|
|
- goimports
|
|
- misspell
|
|
- nakedret
|
|
- unconvert
|
|
# Enable in future
|
|
# - bodyclose
|
|
# - dogsled
|
|
# - dupl
|
|
# - gosec
|
|
# - ifshort
|
|
# - nilerr
|
|
# - prealloc
|
|
# - revive
|
|
# - unparam
|
|
# - wrapcheck
|
|
# - gocritic
|
|
linters-settings:
|
|
errcheck:
|
|
ignore: go.uber.org/zap:Sync
|
|
goimports:
|
|
# put imports beginning with prefix after 3rd-party packages;
|
|
# it's a comma-separated list of prefixes
|
|
local-prefixes: github.com/fission/fission
|