summaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2024-04-01 16:55:08 +0200
committerValery Piashchynski <[email protected]>2024-04-01 16:55:08 +0200
commit711fbd41ce71b6224dc45bcded32436f3eab272e (patch)
tree9805256c76df183fd35169651382b71ec6dbb054 /.golangci.yml
parent26531e692c67f1c5def470430335690be979e94b (diff)
chore(deps): update dependencies
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.golangci.yml b/.golangci.yml
index 6197acf9..0a0125df 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -2,22 +2,16 @@
run:
timeout: 1m
- skip-dirs:
- - .github
- - .git
allow-parallel-runners: true
- skip-files:
- # staticcheck internal file
- - internal/debug/server_test.go
output:
- format: colored-line-number
+ formats: colored-line-number
linters-settings:
wsl:
allow-assign-and-anything: true
govet:
- check-shadowing: true
+ shadow: true
golint:
min-confidence: 0.1
godot:
@@ -79,6 +73,12 @@ linters: # All available linters list: <https://golangci-lint.run/usage/linters/
- wsl # Whitespace Linter - Forces you to use empty lines!
issues:
+ exclude-files:
+ # staticcheck internal file
+ - internal/debug/server_test.go
+ skip-dirs:
+ - .github
+ - .git
exclude-rules:
- path: _test\.go
linters: