Fix ineffassign

This commit is contained in:
Mark Sagi-Kazar 2019-12-18 16:07:06 +01:00
parent 65c77e9db2
commit 050d5af937
No known key found for this signature in database
GPG key ID: 34CC109EB5ED1C2A
2 changed files with 1 additions and 1 deletions

View file

@ -21,7 +21,6 @@ linters:
- goconst - goconst
- staticcheck - staticcheck
- nakedret - nakedret
- ineffassign
- errcheck - errcheck
- gosec - gosec
- gochecknoinits - gochecknoinits

View file

@ -206,6 +206,7 @@ func relativeURL(serverPath, reqPath, assetPath string) string {
server, req, asset := splitPath(serverPath), splitPath(reqPath), splitPath(assetPath) server, req, asset := splitPath(serverPath), splitPath(reqPath), splitPath(assetPath)
// Remove common prefix of request path with server path // Remove common prefix of request path with server path
// nolint: ineffassign
server, req = stripCommonParts(server, req) server, req = stripCommonParts(server, req)
// Remove common prefix of request path with asset path // Remove common prefix of request path with asset path