summaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-03-17 01:57:47 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2023-03-17 02:51:43 -0400
commit0cfc5d80855ee0a28329305cda13e7bff935a297 (patch)
tree84b59f95706e582321eab39b638dbbb6fff12801 /.golangci.yml
parentc30c43f3690931218b88680b337d11a57a2fdc45 (diff)
.golangci.yml: Turn on revive
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml
index 649ef32..06570ba 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -47,7 +47,6 @@ linters:
- exhaustruct
- gochecknoglobals
- gochecknoinits
- - revive # TODO: get this to pass
- testpackage
- thelper
- varnamelen
@@ -85,6 +84,9 @@ linters-settings:
require-specific: true
allow-no-explanation:
- dupword
+ revive:
+ rules:
+ - { name: exported, disabled: true } # TODO: Add doc comments to exported identifiers
stylecheck:
checks:
- "all"