summaryrefslogtreecommitdiff
path: root/.golangci.yml
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-02-06 11:32:06 +0300
committerGrail Finder <wohilas@gmail.com>2026-02-06 11:32:06 +0300
commit478a505869bf26b15dcbc77feb2c09c1f2ff4aac (patch)
tree8103c459a1db2e202f9ea1acc80c2d982b1b7ff1 /.golangci.yml
parentd0722c6f98aa4755f271aefdd8af1cca28fb6f35 (diff)
Enha: client stop string for completion only
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml
index 2c7e552..ce57300 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -1,6 +1,7 @@
version: "2"
run:
- concurrency: 2
+ timeout: 1m
+ concurrency: 4
tests: false
linters:
default: none
@@ -14,7 +15,13 @@ linters:
- prealloc
- staticcheck
- unused
+ - gocritic
+ - unconvert
+ - wastedassign
settings:
+ gocritic:
+ enabled-tags:
+ - performance
funlen:
lines: 80
statements: 50