File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
+ $scheme : https://raw.githubusercontent.com/golangci/golangci-lint/refs/heads/main/jsonschema/golangci.v2.0.jsonschema.json
2
3
version : " 2"
3
4
linters :
4
5
default : none
@@ -33,14 +34,21 @@ linters:
33
34
- examples$
34
35
formatters :
35
36
enable :
37
+ - gci
38
+ - gofmt
36
39
- gofumpt
37
40
- goimports
41
+ - golines
38
42
settings :
39
43
gofumpt :
40
- module-path : github.com/xorcare/testing-go-code-with-postgres
41
44
goimports :
42
- local-prefixes :
43
- - github.com/xorcare/testing-go-code-with-postgres
45
+ gci :
46
+ sections :
47
+ - standard
48
+ - default
49
+ - localmodule
50
+ golines :
51
+ max-len : 100
44
52
exclusions :
45
53
generated : lax
46
54
paths :
Original file line number Diff line number Diff line change @@ -14,13 +14,11 @@ import (
14
14
"github.com/golang-migrate/migrate/v4"
15
15
_ "github.com/golang-migrate/migrate/v4/database/postgres"
16
16
"github.com/golang-migrate/migrate/v4/source/iofs"
17
-
18
- "github.com/xorcare/testing-go-code-with-postgres/migrations"
19
-
20
17
"github.com/google/uuid"
21
18
"github.com/stretchr/testify/require"
22
19
23
20
rootpkg "github.com/xorcare/testing-go-code-with-postgres"
21
+ "github.com/xorcare/testing-go-code-with-postgres/migrations"
24
22
"github.com/xorcare/testing-go-code-with-postgres/testingpg"
25
23
)
26
24
You can’t perform that action at this time.
0 commit comments