diff options
author | Runxi Yu <me@runxiyu.org> | 2025-04-01 13:27:26 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-04-01 13:29:14 +0800 |
commit | a8eee4110fe52e132411e4d171e3e08d22fb0079 (patch) | |
tree | e09781c31212628dcae8732cdc7087df7f435d54 /.golangci.yaml | |
parent | Stub LMTP listener (diff) | |
download | forge-a8eee4110fe52e132411e4d171e3e08d22fb0079.tar.gz forge-a8eee4110fe52e132411e4d171e3e08d22fb0079.tar.zst forge-a8eee4110fe52e132411e4d171e3e08d22fb0079.zip |
Basic debugging LMTP handler
Diffstat (limited to '.golangci.yaml')
-rw-r--r-- | .golangci.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.golangci.yaml b/.golangci.yaml index 760bb07..00ba1ea 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -14,6 +14,8 @@ linters: - nakedret # patterns should be consistent - nonamedreturns # i like named returns - wrapcheck # wrapping all errors is just not necessary + - varnamelen # "from" and "to" are very valid + - stylecheck - maintidx # e - nestif # e - gocognit # e @@ -27,6 +29,12 @@ linters: - unused # e - exhaustruct # e +linters-settings: + revive: + rules: + - name: error-strings + disabled: true + issues: max-issues-per-linter: 0 max-same-issues: 0 |