From 5c5f440085255bf7f11af589faa4fa14d74f9294 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Tue, 17 Feb 2026 19:34:08 -0800 Subject: Fix scrolling behavior, CI linting, and update Dockerfile --- .golangci.yml | 34 ++++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 14 deletions(-) (limited to '.golangci.yml') diff --git a/.golangci.yml b/.golangci.yml index e8e8364..d3062dc 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,25 +1,31 @@ version: "2" run: tests: true - timeout: 5m - linters: - disable-all: true - disable: - - errcheck + default: none enable: - - staticcheck - govet - ineffassign - - unparam - misspell - + - staticcheck + - unparam + exclusions: + generated: lax + rules: + - linters: + - errcheck + path: .*_test\.go + paths: + - third_party$ + - builtin$ + - examples$ issues: - exclude-use-default: false max-issues-per-linter: 0 max-same-issues: 0 - exclude-rules: - - path: .*_test\.go - linters: - - errcheck - +formatters: + exclusions: + generated: lax + paths: + - third_party$ + - builtin$ + - examples$ -- cgit v1.2.3