summaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2023-06-04 19:46:11 +0200
committerValery Piashchynski <[email protected]>2023-06-04 19:46:11 +0200
commit2f38ae823efc299fd87a31ec1396160c2b5350c2 (patch)
tree6dbfe311d067d776400247aa9896feabab27f25e /.golangci.yml
parent14ac0a4b7ad2b5bbb6af77890ae684e968362d65 (diff)
chore: update golangci-lint action
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml1
1 files changed, 0 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml
index 0533b9eb..bc4f4ca8 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -47,7 +47,6 @@ linters: # All available linters list: <https://golangci-lint.run/usage/linters/
enable:
- asciicheck # Simple linter to check that your code does not contain non-ASCII identifiers
- bodyclose # Checks whether HTTP response body is closed successfully
- - depguard # Go linter that checks if package imports are in a list of acceptable packages
- dogsled # Checks assignments with too many blank identifiers (e.g. x, _, _, _, := f())
- dupl # Tool for code clone detection
- errcheck # Errcheck is a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases