File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,21 @@ linters:
33
33
- examples$
34
34
formatters :
35
35
enable :
36
+ - gci
37
+ - gofmt
36
38
- gofumpt
37
39
- goimports
40
+ - golines
38
41
settings :
39
42
gofumpt :
40
- module-path : github.com/xorcare/testing-go-code-with-postgres
41
43
goimports :
42
- local-prefixes :
43
- - github.com/xorcare/testing-go-code-with-postgres
44
+ gci :
45
+ sections :
46
+ - standard
47
+ - default
48
+ - localmodule
49
+ golines :
50
+ max-len : 100
44
51
exclusions :
45
52
generated : lax
46
53
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