shithub: furgit

Download patch

ref: 5b0b1441ea90d08985ec48cd8f15fc4ff1f2cd92
parent: 84aac13e64962806e5101abc461be50198ac5642
author: Runxi Yu <runxiyu@umich.edu>
date: Sun Mar 29 11:19:22 EDT 2026

ci: Disable dupl

--- a/.golangci.yaml
+++ b/.golangci.yaml
@@ -8,6 +8,7 @@
       - internal/compress/internal
   disable:
     - dupword          # extremely normal in tests and a pretty unnecessary linter
+    - dupl             # i know when i'm duplicating things and it's almost always for a good reason
     - ireturn          # can't seem to ignore this linter properly and we don't need anyway, cf. tagged unions
     - goconst          # unnecessary especially for our parsing code; many false positives
     - mnd              # unnecessary especially for our parsing code; many false positives
--