1
+ # SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
2
+ # SPDX-License-Identifier: MIT
3
+
1
4
linters-settings :
2
5
govet :
3
6
check-shadowing : true
@@ -10,7 +13,15 @@ linters-settings:
10
13
modules :
11
14
- github.com/pkg/errors :
12
15
recommendations :
13
- - errors
16
+ - errors
17
+ forbidigo :
18
+ forbid :
19
+ - Fatal(f|ln)?$
20
+ - ^fmt.Print(f|ln)?$
21
+ - ^log.Print(f|ln)?$
22
+ - ^os.Exit$
23
+ - ^panic$
24
+ - ^print(ln)?$
14
25
15
26
linters :
16
27
enable :
@@ -29,6 +40,7 @@ linters:
29
40
- errorlint # errorlint is a linter for that can be used to find code that will cause problems with the error wrapping scheme introduced in Go 1.13.
30
41
- exhaustive # check exhaustiveness of enum switch statements
31
42
- exportloopref # checks for pointers to enclosing loop variables
43
+ - forbidigo # Forbids identifiers
32
44
- forcetypeassert # finds forced type assertions
33
45
- gci # Gci control golang package import order and make it always deterministic.
34
46
- gochecknoglobals # Checks that no globals are present in Go code
@@ -73,7 +85,6 @@ linters:
73
85
- containedctx # containedctx is a linter that detects struct contained context.Context field
74
86
- cyclop # checks function and package cyclomatic complexity
75
87
- exhaustivestruct # Checks if all struct's fields are initialized
76
- - forbidigo # Forbids identifiers
77
88
- funlen # Tool for detection of long functions
78
89
- gocyclo # Computes and checks the cyclomatic complexity of functions
79
90
- godot # Check if comments end in a period
@@ -105,12 +116,23 @@ issues:
105
116
- path : _test\.go
106
117
linters :
107
118
- gocognit
119
+ - forbidigo
108
120
109
121
# Allow complex main function in examples
110
122
- path : examples
111
123
text : " of func `main` is high"
112
124
linters :
113
125
- gocognit
126
+
127
+ # Allow forbidden identifiers in examples
128
+ - path : examples
129
+ linters :
130
+ - forbidigo
131
+
132
+ # Allow forbidden identifiers in CLI commands
133
+ - path : cmd
134
+ linters :
135
+ - forbidigo
114
136
115
137
run :
116
138
skip-dirs-use-default : false
0 commit comments