mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-21 08:05:43 +00:00
893f3f6df6
Former-commit-id: 1d9477f510bb2d6ada4b720933f113f24c25913e
Former-commit-id: b22ff272ca
74 lines
1.4 KiB
YAML
74 lines
1.4 KiB
YAML
run:
|
|
timeout: 10m
|
|
skip-dirs:
|
|
- internal/data/ent.*
|
|
linters-settings:
|
|
goconst:
|
|
min-len: 5
|
|
min-occurrences: 5
|
|
exhaustive:
|
|
default-signifies-exhaustive: true
|
|
revive:
|
|
ignore-generated-header: false
|
|
severity: warning
|
|
confidence: 3
|
|
depguard:
|
|
rules:
|
|
main:
|
|
deny:
|
|
- pkg: io/util
|
|
desc: |
|
|
Deprecated: As of Go 1.16, the same functionality is now provided by
|
|
package io or package os, and those implementations should be
|
|
preferred in new code. See the specific function documentation for
|
|
details.
|
|
gocritic:
|
|
enabled-checks:
|
|
- ruleguard
|
|
testifylint:
|
|
enable-all: true
|
|
tagalign:
|
|
order:
|
|
- json
|
|
- schema
|
|
- yaml
|
|
- yml
|
|
- toml
|
|
- validate
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- asciicheck
|
|
- bodyclose
|
|
- depguard
|
|
- dogsled
|
|
- errcheck
|
|
- errorlint
|
|
- exhaustive
|
|
- exportloopref
|
|
- gochecknoinits
|
|
- goconst
|
|
- gocritic
|
|
- gocyclo
|
|
- gofmt
|
|
- goprintffuncname
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- nakedret
|
|
- revive
|
|
- staticcheck
|
|
- stylecheck
|
|
- tagalign
|
|
- testifylint
|
|
- typecheck
|
|
- typecheck
|
|
- unconvert
|
|
- unused
|
|
- whitespace
|
|
- zerologlint
|
|
- sqlclosecheck
|
|
issues:
|
|
exclude-use-default: false
|
|
fix: true
|