File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ linters:
40
40
- rowserrcheck
41
41
- sqlclosecheck
42
42
- staticcheck
43
- - typecheck
43
+ # Temporarily disabled due to flakiness
44
+ # - typecheck
44
45
- unparam
45
46
- unused
46
47
linters-settings :
@@ -65,3 +66,6 @@ issues:
65
66
exclude-rules :
66
67
- path : server/artifacts/artifact_server_test.go
67
68
text : " response body must be closed"
69
+ - path : /
70
+ linters :
71
+ - typecheck
Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ lint: server/static/files.go $(GOPATH)/bin/golangci-lint
413
413
# Tidy Go modules
414
414
go mod tidy
415
415
# Lint Go files
416
- $(GOPATH ) /bin/golangci-lint run --fix --verbose
416
+ $(GOPATH ) /bin/golangci-lint run --fix --verbose -c .golangci.yml
417
417
# Lint the UI
418
418
if [ -e ui/node_modules ]; then yarn --cwd ui lint ; fi
419
419
You can’t perform that action at this time.
0 commit comments