diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-17 19:34:08 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-17 19:35:55 -0800 |
| commit | 5c5f440085255bf7f11af589faa4fa14d74f9294 (patch) | |
| tree | dcce0b145c199e4fef9ce2832b0b1da55a17cc6a /.golangci.yml | |
| parent | 9db36ae402dbb74f7223a4efc8b2483086684e38 (diff) | |
| download | neko-5c5f440085255bf7f11af589faa4fa14d74f9294.tar.gz neko-5c5f440085255bf7f11af589faa4fa14d74f9294.tar.bz2 neko-5c5f440085255bf7f11af589faa4fa14d74f9294.zip | |
Fix scrolling behavior, CI linting, and update Dockerfile
Diffstat (limited to '.golangci.yml')
| -rw-r--r-- | .golangci.yml | 34 |
1 files changed, 20 insertions, 14 deletions
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$ |
