Skip to content

Commit bb0480e

Browse files
authored
Fixing and enabling more linters (#529)
* Fix nolintlint linter * Enable gocritic:wrapperFunc * Fix gocritic:octalLiteral * Fix gocritic:paramTypeCombine * Enable gocritic:typeDefFirst * Enable gocritic:rangeValCopy
1 parent 9cda2be commit bb0480e

File tree

6 files changed

+9
-16
lines changed

6 files changed

+9
-16
lines changed

.golangci.yml

-6
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ linters:
6666
- nestif
6767
- nlreturn
6868
- noctx # might be worth fixing
69-
- nolintlint
7069
- nonamedreturns
7170
- paralleltest
7271
- protogetter
@@ -98,17 +97,12 @@ linters-settings:
9897
disabled-checks:
9998
- dupImport # https://github.com/go-critic/go-critic/issues/845
10099
- ifElseChain
101-
- octalLiteral
102100
- whyNoLint
103-
- wrapperFunc
104101
- sloppyReassign
105102
- uncheckedInlineErr # Experimental rule with high false positive rate.
106103

107104
# Broken with Go 1.18 feature (https://github.com/golangci/golangci-lint/issues/2649):
108105
- hugeParam
109-
- rangeValCopy
110-
- typeDefFirst
111-
- paramTypeCombine
112106
gocyclo:
113107
min-complexity: 15
114108
govet:

app/app.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ func New(ctx context.Context, opts ...ConfigOption) (*App, error) {
186186
return app, nil
187187
}
188188

189-
func parseDurationTimeout(l *zap.SugaredLogger, flag string, deprecatedFlag string) (time.Duration, bool, error) {
189+
func parseDurationTimeout(l *zap.SugaredLogger, flag, deprecatedFlag string) (time.Duration, bool, error) {
190190
if strValue, ok := os.LookupEnv(flag); ok {
191191
d, err := time.ParseDuration(strValue)
192192
if err != nil {

e2e-testing/e2e_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func TestEndToEnd(t *testing.T) {
106106
assert.True(t, strings.Contains(mockAPMServerLog, testUUID))
107107
}
108108

109-
func runTestWithTimer(l *zap.SugaredLogger, path string, serviceName string, serverURL string, buildFlag bool, lambdaFuncTimeout int, resultsChan chan string) string {
109+
func runTestWithTimer(l *zap.SugaredLogger, path, serviceName, serverURL string, buildFlag bool, lambdaFuncTimeout int, resultsChan chan string) string {
110110
timer := time.NewTimer(time.Duration(lambdaFuncTimeout) * time.Second * 2)
111111
defer timer.Stop()
112112
go runTest(l, path, serviceName, serverURL, buildFlag, lambdaFuncTimeout, resultsChan)
@@ -122,7 +122,7 @@ func buildExtensionBinaries(l *zap.SugaredLogger) {
122122
RunCommandInDir(l, "make", []string{}, "..")
123123
}
124124

125-
func runTest(l *zap.SugaredLogger, path string, serviceName string, serverURL string, buildFlag bool, lambdaFuncTimeout int, resultsChan chan string) {
125+
func runTest(l *zap.SugaredLogger, path, serviceName, serverURL string, buildFlag bool, lambdaFuncTimeout int, resultsChan chan string) {
126126
l.Infof("Starting to test %s", serviceName)
127127

128128
if !FolderExists(filepath.Join(path, ".aws-sam")) || buildFlag {
@@ -144,7 +144,7 @@ func runTest(l *zap.SugaredLogger, path string, serviceName string, serverURL st
144144
resultsChan <- uuidWithHyphen
145145
}
146146

147-
func retrieveJavaAgent(l *zap.SugaredLogger, samJavaPath string, version string) {
147+
func retrieveJavaAgent(l *zap.SugaredLogger, samJavaPath, version string) {
148148
agentFolderPath := filepath.Join(samJavaPath, "agent")
149149
agentArchivePath := filepath.Join(samJavaPath, "agent.zip")
150150

@@ -172,7 +172,7 @@ func changeJavaAgentPermissions(l *zap.SugaredLogger, samJavaPath string) {
172172
agentFiles, err := os.ReadDir(agentFolderPath)
173173
ProcessError(l, err)
174174
for _, f := range agentFiles {
175-
if err = os.Chmod(filepath.Join(agentFolderPath, f.Name()), 0755); err != nil {
175+
if err = os.Chmod(filepath.Join(agentFolderPath, f.Name()), 0o755); err != nil {
176176
l.Errorf("Could not change java agent permissions : %v", err)
177177
}
178178
}

e2e-testing/e2e_util.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import (
3535

3636
// GetEnvVarValueOrSetDefault retrieves the environment variable envVarName.
3737
// If the desired variable is not defined, defaultVal is returned.
38-
func GetEnvVarValueOrSetDefault(envVarName string, defaultVal string) string {
38+
func GetEnvVarValueOrSetDefault(envVarName, defaultVal string) string {
3939
val := os.Getenv(envVarName)
4040
if val == "" {
4141
return defaultVal
@@ -83,13 +83,13 @@ func ProcessError(l *zap.SugaredLogger, err error) {
8383
}
8484

8585
// Unzip is a utility function that unzips a specified zip archive to a specified destination.
86-
func Unzip(l *zap.SugaredLogger, archivePath string, destinationFolderPath string) {
86+
func Unzip(l *zap.SugaredLogger, archivePath, destinationFolderPath string) {
8787
openedArchive, err := zip.OpenReader(archivePath)
8888
ProcessError(l, err)
8989
defer openedArchive.Close()
9090

9191
// Permissions setup
92-
err = os.MkdirAll(destinationFolderPath, 0755)
92+
err = os.MkdirAll(destinationFolderPath, 0o755)
9393
if err != nil {
9494
l.Errorf("Could not create folders required to unzip, %v", err)
9595
}

logsapi/metrics_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
//nolint:dupl
1918
package logsapi
2019

2120
import (

logsapi/subscribe.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func (lc *Client) startHTTPServer() (string, error) {
8282
return addr, nil
8383
}
8484

85-
func (lc *Client) subscribe(types []SubscriptionType, extensionID string, uri string) error {
85+
func (lc *Client) subscribe(types []SubscriptionType, extensionID, uri string) error {
8686
data, err := json.Marshal(&SubscribeRequest{
8787
SchemaVersion: SchemaVersionLatest,
8888
LogTypes: types,

0 commit comments

Comments
 (0)