diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 22:33:47 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 22:33:47 +0800 |
commit | 49ec3e7585f9cd1ebc5369750dc07c12f7b113a6 (patch) | |
tree | b4aaa40feab9019948abebcb590d1e7ca3244f89 | |
parent | Correct spelling (diff) | |
download | powxy-49ec3e7585f9cd1ebc5369750dc07c12f7b113a6.tar.gz powxy-49ec3e7585f9cd1ebc5369750dc07c12f7b113a6.tar.zst powxy-49ec3e7585f9cd1ebc5369750dc07c12f7b113a6.zip |
Add a .golangci.yaml
-rw-r--r-- | .golangci.yaml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.golangci.yaml b/.golangci.yaml new file mode 100644 index 0000000..f047fe8 --- /dev/null +++ b/.golangci.yaml @@ -0,0 +1,20 @@ +linters: + enable-all: true + disable: + - wsl + - varnamelen + - nonamedreturns + - nlreturn + - tenv + - gochecknoglobals + - funlen + - paralleltest + - mnd + - gochecknoinits + - cyclop + - exhaustruct + - lll + +issues: + max-issues-per-linter: 0 + max-same-issues: 0 |