We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b1c96 commit f73e145Copy full SHA for f73e145
.github/workflows/nix.yml
@@ -16,6 +16,7 @@ jobs:
16
with:
17
name: numtide
18
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
19
+ - run: $(nix-build shell.nix) --pure /usr/bin/env HOME=$HOME golangci-lint run
20
- run: nix flake check
21
- run: nix develop -c echo OK
22
- name: Run nix flake archive
.golangci.yml
@@ -0,0 +1,9 @@
1
+linters:
2
+ presets:
3
+ - bugs
4
+ - unused
5
+ enable:
6
+ - gofmt
7
+ - golint
8
+ - misspell
9
+ - stylecheck
devshell.toml
@@ -54,3 +54,9 @@ help = "github utility"
54
name = "hub"
55
package = "gitAndTools.hub"
56
category = "utilites"
57
+
58
+[[commands]]
59
+help = "golang linter"
60
+name = "golangci-lint"
61
+package = "golangci-lint"
62
+category = "linters"
0 commit comments