From b483650651515542d9cb6274c70ea54ebe8774e1 Mon Sep 17 00:00:00 2001 From: Ge Song Date: Fri, 14 Apr 2023 23:18:56 +0800 Subject: [PATCH] =?UTF-8?q?synchelper/=E5=9F=BA=E4=BA=8Egolangci-lint?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=A3=E7=A0=81;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- synchelper/.golangci.yaml | 138 ++++++++++++++++++++++++++++++++++++++ synchelper/io_writer.go | 2 +- 2 files changed, 139 insertions(+), 1 deletion(-) create mode 100644 synchelper/.golangci.yaml diff --git a/synchelper/.golangci.yaml b/synchelper/.golangci.yaml new file mode 100644 index 0000000..7883e1d --- /dev/null +++ b/synchelper/.golangci.yaml @@ -0,0 +1,138 @@ +## 更新到 golangci-lint@v1.52.2 +run: + timeout: 1m + build-tags: [ ] + skip-dirs: [ ] + skip-files: [ ] +linters: + disable-all: true + enable: + - errcheck + - gosimple + - govet + - ineffassign + - staticcheck + - typecheck + - unused + - asasalint + - asciicheck + - bidichk + - bodyclose + - containedctx + - cyclop + - dupl + - durationcheck + - errname + - errorlint + - exhaustive + - exportloopref + - funlen + - gocheckcompilerdirectives + - gochecknoinits + - goconst + - gocritic + - gocyclo + - goimports + - gomnd + - goprintffuncname + - gosec + - lll + - loggercheck + - makezero + - nakedret + - nestif + - nilnil + - noctx + - nolintlint + - nosprintfhostport + - prealloc + - predeclared + - promlinter + - reassign + - revive + - stylecheck + - tenv + - testableexamples + - testpackage + - tparallel + - unconvert + - unparam + - usestdlibvars + - wastedassign + - whitespace +linters-settings: + errcheck: + check-type-assertions: true + exclude-functions: [ ] + govet: + enable-all: true + disable: [ ] + cyclop: + max-complexity: 10 + package-average: 0.0 + dupl: + threshold: 150 + exhaustive: + check: + - switch + - map + funlen: + lines: 100 + statements: 60 + gocritic: + disabled-checks: + - commentFormatting + settings: + captLocal: + paramsOnly: false + underef: + skipRecvDeref: false + gocyclo: + min-complexity: 20 + gomnd: + ignored-functions: + - os.Chmod + - os.Mkdir + - os.MkdirAll + - os.OpenFile + - os.WriteFile + - prometheus.ExponentialBuckets + - prometheus.ExponentialBucketsRange + - prometheus.LinearBuckets + lll: + line-length: 240 + nakedret: + max-func-lines: 10 + nestif: + min-complexity: 5 + predeclared: + ignore: "" + q: false + reassign: + patterns: + - ".*" + tenv: + all: true + usestdlibvars: + time-month: true + time-layout: true + crypto-hash: true + default-rpc-path: true + os-dev-null: true + sql-isolation-level: true + tls-signature-scheme: true + constant-kind: true + syslog-priority: true +issues: + max-same-issues: 10 + exclude-rules: + - source: "//noinspection" + linters: [ gocritic ] + - path: "_test\\.go" + linters: + - bodyclose + - dupl + - funlen + - goconst + - gosec + - noctx diff --git a/synchelper/io_writer.go b/synchelper/io_writer.go index d3ae9f6..982861d 100644 --- a/synchelper/io_writer.go +++ b/synchelper/io_writer.go @@ -18,7 +18,7 @@ type syncWriter struct { lock sync.Mutex } -func (w *syncWriter) Write(p []byte) (n int, err error) { +func (w *syncWriter) Write(p []byte) (int, error) { w.lock.Lock() defer w.lock.Unlock() return w.writer.Write(p)