File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 5
5
enable :
6
6
# Format
7
7
- " gofumpt" # Gofumpt checks whether code was gofumpt-ed. Which is a superset of gofmt that handles some cases that gofmt missed.
8
- - " gci" # Gci controls Go package import order and makes it always deterministic.
8
+ # - "gci" # Gci controls Go package import order and makes it always deterministic.
9
9
- " asciicheck" # Checks that all code identifiers does not have non-ASCII symbols in the name.
10
10
- " bidichk" # Checks for dangerous unicode character sequences.
11
11
# Error
@@ -17,11 +17,11 @@ linters:
17
17
- " staticcheck"
18
18
- " unused"
19
19
linters-settings :
20
- gci :
21
- sections :
22
- - standard
23
- - default
24
- - localmodule
25
- - blank
26
- - dot
27
- - alias
20
+ # gci:
21
+ # sections:
22
+ # - standard
23
+ # - default
24
+ # - localmodule
25
+ # - blank
26
+ # - dot
27
+ # - alias
Original file line number Diff line number Diff line change @@ -12,10 +12,9 @@ import (
12
12
13
13
"github.com/pb33f/libopenapi"
14
14
"github.com/pb33f/libopenapi-validator/config"
15
+ "github.com/pb33f/libopenapi-validator/paths"
15
16
"github.com/stretchr/testify/assert"
16
17
"github.com/stretchr/testify/require"
17
-
18
- "github.com/pb33f/libopenapi-validator/paths"
19
18
)
20
19
21
20
func TestValidateBody_NotRequiredBody (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments