Skip to content

Commit 935d4e0

Browse files
authored
Use golangci-lint v2 (#484)
1 parent b1704dd commit 935d4e0

File tree

3 files changed

+34
-23
lines changed

3 files changed

+34
-23
lines changed

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: "authzed/actions/gofumpt@main"
2121
- uses: "authzed/actions/go-mod-tidy@main"
2222
- uses: "authzed/actions/go-generate@main"
23-
- uses: "authzed/actions/golangci-lint@main"
23+
- uses: "authzed/actions/golangci-lint@golangci-lint-v2"
2424

2525
extra-lint:
2626
name: "Lint YAML & Markdown"

.golangci.yaml

+26-17
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,46 @@
11
---
2-
run:
3-
timeout: "5m"
4-
output:
5-
sort-results: true
6-
linters-settings:
7-
goimports:
8-
local-prefixes: "github.com/authzed/zed"
2+
version: "2"
93
linters:
104
enable:
115
- "bidichk"
126
- "bodyclose"
13-
- "errcheck"
147
- "errname"
158
- "errorlint"
16-
- "gofumpt"
17-
- "goimports"
189
- "goprintffuncname"
1910
- "gosec"
20-
- "gosimple"
21-
- "govet"
2211
- "importas"
23-
- "ineffassign"
2412
- "makezero"
2513
- "prealloc"
2614
- "predeclared"
2715
- "promlinter"
2816
- "revive"
2917
- "rowserrcheck"
3018
- "staticcheck"
31-
- "stylecheck"
32-
- "tenv"
33-
- "typecheck"
3419
- "unconvert"
35-
- "unused"
3620
- "wastedassign"
3721
- "whitespace"
22+
exclusions:
23+
generated: "lax"
24+
presets:
25+
- "comments"
26+
- "common-false-positives"
27+
- "legacy"
28+
- "std-error-handling"
29+
paths:
30+
- "third_party$"
31+
- "builtin$"
32+
- "examples$"
33+
formatters:
34+
enable:
35+
- "gofumpt"
36+
- "goimports"
37+
settings:
38+
goimports:
39+
local-prefixes:
40+
- "github.com/authzed/zed"
41+
exclusions:
42+
generated: "lax"
43+
paths:
44+
- "third_party$"
45+
- "builtin$"
46+
- "examples$"

internal/printers/debug.go

+7-5
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ func displayCheckTrace(checkTrace *v1.CheckDebugTrace, tp *TreePrinter, hasError
3333
resourceColor := white
3434
permissionColor := color.FgWhite.Render
3535

36-
if checkTrace.PermissionType == v1.CheckDebugTrace_PERMISSION_TYPE_PERMISSION {
36+
switch checkTrace.PermissionType {
37+
case v1.CheckDebugTrace_PERMISSION_TYPE_PERMISSION:
3738
permissionColor = lightgreen
38-
} else if checkTrace.PermissionType == v1.CheckDebugTrace_PERMISSION_TYPE_RELATION {
39+
case v1.CheckDebugTrace_PERMISSION_TYPE_RELATION:
3940
permissionColor = orange
4041
}
4142

42-
if checkTrace.Result == v1.CheckDebugTrace_PERMISSIONSHIP_CONDITIONAL_PERMISSION {
43+
switch checkTrace.Result {
44+
case v1.CheckDebugTrace_PERMISSIONSHIP_CONDITIONAL_PERMISSION:
4345
switch checkTrace.CaveatEvaluationInfo.Result {
4446
case v1.CaveatEvalInfo_RESULT_FALSE:
4547
hasPermission = red("⨉")
@@ -51,11 +53,11 @@ func displayCheckTrace(checkTrace *v1.CheckDebugTrace, tp *TreePrinter, hasError
5153
resourceColor = faint
5254
permissionColor = faint
5355
}
54-
} else if checkTrace.Result == v1.CheckDebugTrace_PERMISSIONSHIP_NO_PERMISSION {
56+
case v1.CheckDebugTrace_PERMISSIONSHIP_NO_PERMISSION:
5557
hasPermission = red("⨉")
5658
resourceColor = faint
5759
permissionColor = faint
58-
} else if checkTrace.Result == v1.CheckDebugTrace_PERMISSIONSHIP_UNSPECIFIED {
60+
case v1.CheckDebugTrace_PERMISSIONSHIP_UNSPECIFIED:
5961
hasPermission = yellow("∵")
6062
}
6163

0 commit comments

Comments
 (0)