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 ffd35d7 commit 9ca3e34Copy full SHA for 9ca3e34
.github/workflows/test.yml
@@ -11,10 +11,10 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
14
- - name: Set up Go 1.13
+ - name: Set up Go 1.16
15
uses: actions/setup-go@v1
16
with:
17
- go-version: 1.13
+ go-version: 1.16
18
id: go
19
20
- name: Check out code into the Go module directory
.golangci.yml
@@ -0,0 +1,14 @@
1
+output:
2
+ format: colored-line-number
3
+ print-issued-lines: true
4
+ print-linter-name: true
5
+ uniq-by-line: true
6
+ path-prefix: ""
7
+ sort-results: false
8
+
9
+linters:
10
+ disable-all: true
+ fast: false
+ enable:
+ - unused
+ - typecheck
0 commit comments