We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bed6cad + 4014bfd commit 3d567cbCopy full SHA for 3d567cb
.github/workflows/build.yml
@@ -12,6 +12,7 @@ jobs:
12
- name: Lint
13
uses: golangci/golangci-lint-action@v6
14
with:
15
+ version: v1.64
16
only-new-issues: true
17
18
test:
.golangci.yml
@@ -1,5 +1,5 @@
1
run:
2
- deadline: 240s
+ timeout: 240s
3
tests: true
4
5
linters:
goutil/goutil.go
@@ -255,6 +255,12 @@ start:
255
return t.Name
256
case *ast.SelectorExpr:
257
return t.Sel.Name
258
+ case *ast.IndexExpr:
259
+ f = t.X
260
+ goto start
261
+ case *ast.IndexListExpr:
262
263
264
default:
265
panic(fmt.Sprintf("can't get name for %#v", f))
266
}
0 commit comments