Skip to content

Commit

Permalink
Fix code format (#594)
Browse files Browse the repository at this point in the history
* Fix code format

* Remove unnecessary nolint
  • Loading branch information
shuheiktgw authored Dec 18, 2024
1 parent 1375813 commit 0c41d8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lexer/lexer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func TestTokenize(t *testing.T) {
CharacterType: token.CharacterTypeMiscellaneous,
Indicator: token.NotIndicator,
Value: "a",
//nolint: gci
// nolint: gci
Origin: " a",
},
},
Expand Down Expand Up @@ -2528,7 +2528,7 @@ s: >-3
CharacterType: token.CharacterTypeIndicator,
Indicator: token.BlockScalarIndicator,
Value: "|",
Origin: "\n| ", //nolint:gci,gofmt
Origin: "\n| ",
},
{
Type: token.CommentType,
Expand Down Expand Up @@ -3222,7 +3222,7 @@ a: |invalid`,
},
{
name: "use tab character as indent",
//nolint: gci
// nolint: gci
src: " a: b",
},
{
Expand Down

0 comments on commit 0c41d8e

Please sign in to comment.