lint: migrate to review-dog (#5955)

golangci is being deprecated in April 15th.

Remove riot and add sims badge.
This commit is contained in:
Marko
2020-04-08 14:47:24 +02:00
committed by GitHub
parent a1feca39c2
commit d351a574a8
3 changed files with 14 additions and 2 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ func TestContextWithCustom(t *testing.T) {
require.Equal(t, cp, ctx.WithConsensusParams(cp).ConsensusParams())
// test inner context
newContext := context.WithValue(ctx.Context(), "key", "value")
newContext := context.WithValue(ctx.Context(), "key", "value") //nolint:golint
require.NotEqual(t, ctx.Context(), ctx.WithContext(newContext).Context())
}