diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-17 20:47:53 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-17 20:47:53 -0800 |
| commit | b0358b6777450ccd4e9fe704d76aeffe7b5a5d6e (patch) | |
| tree | 510a89e072a847d26172ad7924c24a130005e906 /.golangci.yml | |
| parent | 232b63ba9cf1c7e5126839f7e1df034e375114d6 (diff) | |
| download | neko-b0358b6777450ccd4e9fe704d76aeffe7b5a5d6e.tar.gz neko-b0358b6777450ccd4e9fe704d76aeffe7b5a5d6e.tar.bz2 neko-b0358b6777450ccd4e9fe704d76aeffe7b5a5d6e.zip | |
Fix lint error and optimize linter config for local runs
Diffstat (limited to '.golangci.yml')
| -rw-r--r-- | .golangci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.golangci.yml b/.golangci.yml index d3062dc..13f8ccb 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,6 +1,9 @@ version: "2" run: tests: true + # Limit concurrency and timeout to avoid crashing constrained environments (like local VMs) + concurrency: 2 + timeout: 5m linters: default: none enable: |
