File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,17 @@ 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
- gofumpt :
40
- module-path : github.com/xorcare/testing-go-code-with-postgres
41
- goimports :
42
- local-prefixes :
43
- - github.com/xorcare/testing-go-code-with-postgres
42
+ gci :
43
+ sections :
44
+ - standard
45
+ - default
46
+ - localmodule
44
47
exclusions :
45
48
generated : lax
46
49
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