mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
* Eliminate direct dependency on gopkg.in/yaml.v2 * Add gopkg.in/yaml.v2 as a restricted import * Add github.com/distribution/distribution as a restricted dependency in favor of distribution/reference which is the subset of functionality that Compose needs * Remove an unused exclusion NOTE: This does change the `compose config` output slightly but does NOT change the semantics: * YAML indentation is slightly different for lists (this is a `v2` / `v3` thing) * JSON is now "minified" instead of pretty-printed (I think this generally desirable and more consistent with other JSON command outputs) Signed-off-by: Milas Bowman <milas.bowman@docker.com>
68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
run:
|
|
concurrency: 2
|
|
timeout: 10m
|
|
linters:
|
|
enable-all: false
|
|
disable-all: true
|
|
enable:
|
|
- depguard
|
|
- errcheck
|
|
- gocritic
|
|
- gocyclo
|
|
- gofmt
|
|
- goimports
|
|
- gomodguard
|
|
- revive
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- lll
|
|
- misspell
|
|
- nakedret
|
|
- nolintlint
|
|
- staticcheck
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
linters-settings:
|
|
revive:
|
|
rules:
|
|
- name: package-comments
|
|
disabled: true
|
|
depguard:
|
|
rules:
|
|
all:
|
|
deny:
|
|
- pkg: io/ioutil
|
|
desc: 'io/ioutil package has been deprecated'
|
|
- pkg: gopkg.in/yaml.v2
|
|
desc: 'compose-go uses yaml.v3'
|
|
gomodguard:
|
|
blocked:
|
|
versions:
|
|
- github.com/distribution/distribution:
|
|
reason: "use distribution/reference"
|
|
- gotest.tools:
|
|
version: "< 3.0.0"
|
|
reason: "deprecated, pre-modules version"
|
|
gocritic:
|
|
# Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint run` to see all tags and checks.
|
|
# Empty list by default. See https://github.com/go-critic/go-critic#usage -> section "Tags".
|
|
enabled-tags:
|
|
- diagnostic
|
|
- opinionated
|
|
- style
|
|
disabled-checks:
|
|
- paramTypeCombine
|
|
- unnamedResult
|
|
- whyNoLint
|
|
gocyclo:
|
|
min-complexity: 16
|
|
lll:
|
|
line-length: 200
|
|
issues:
|
|
# golangci hides some golint warnings (the warning about exported things
|
|
# withtout documentation for example), this will make it show them anyway.
|
|
exclude-use-default: false
|