Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update golangci-lint #465

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
32 changes: 15 additions & 17 deletions .golangci.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
---
linters:
disable-all: true
enable:
- "gofmt"
- "gosimple"
- "govet"
- "ineffassign"
- "makezero"
- "misspell"
- "nakedret"
- "nilerr"
- "staticcheck"
- "structcheck"
- "unconvert"
- "unused"

run:
timeout: '5m'
enable-all: true
disable:
# Temporary
#- 'depguard'
#- 'gomoddirectives'
#- 'nosnakecase'
#- 'paralleltest'
#- 'persprintf'
#- 'thelper'
#- 'varnamelen'
#- 'wrapcheck'
#- 'wsl'

# Deprecated
- 'exportloopref'
205 changes: 102 additions & 103 deletions go.mod

Large diffs are not rendered by default.

791 changes: 220 additions & 571 deletions go.sum

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion internal/provider/data_account_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ package provider

import (
"fmt"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
)

func TestAccDataAccount_default(t *testing.T) {
Expand Down
4 changes: 1 addition & 3 deletions internal/provider/data_user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ func TestAccDataUser_default(t *testing.T) {

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() {
//preCheck(t)

_, err := testClient.CreateUser(context.Background(), "default", &unifi.User{
MAC: mac,
Name: "tfacc-User-Data",
Expand All @@ -26,7 +24,7 @@ func TestAccDataUser_default(t *testing.T) {
t.Fatal(err)
}
},
//PreCheck: func() { preCheck(t) },
// PreCheck: func() { preCheck(t) },
ProviderFactories: providerFactories,
Steps: []resource.TestStep{
{
Expand Down
Loading
Loading