diff options
author | Alan Pearce | 2024-05-22 18:03:22 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-22 18:03:22 +0200 |
commit | ea098ab11740fe4783694ff0122738b30e0c342f (patch) | |
tree | bcd50fdb6fc7ce9730c758f709aa6bf29a763ea9 /.golangci.yaml | |
parent | aef028263229d8acda28b8e657413f7e9c187833 (diff) | |
download | website-ea098ab11740fe4783694ff0122738b30e0c342f.tar.lz website-ea098ab11740fe4783694ff0122738b30e0c342f.tar.zst website-ea098ab11740fe4783694ff0122738b30e0c342f.zip |
refactor: lint with golangci-lint
Diffstat (limited to '.golangci.yaml')
-rw-r--r-- | .golangci.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.golangci.yaml b/.golangci.yaml new file mode 100644 index 0000000..e6c1096 --- /dev/null +++ b/.golangci.yaml @@ -0,0 +1,23 @@ +--- +# yamllint disable-line rule:line-length +# yaml-language-server: $schema=https://golangci-lint.run/jsonschema/golangci.jsonschema.json +linters: + fast: false + enable: + - gocritic + - godox + - gosec + - grouper + - lll + - nilerr + - nilnil + - nlreturn + - noctx + - nosprintfhostport + - paralleltest + - prealloc + - reassign + - revive + - sloglint + - unconvert + - wrapcheck |