Skip to content

Commit

Permalink
remov max-line-length for protolint
Browse files Browse the repository at this point in the history
  • Loading branch information
leonz789 committed Dec 3, 2024
1 parent 4bff9df commit 4a5dbf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .protolint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ lint:
add:
- FIELD_NAMES_LOWER_SNAKE_CASE
- MESSAGE_NAMES_UPPER_CAMEL_CASE
- MAX_LINE_LENGTH
# - MAX_LINE_LENGTH
- INDENT
# - SERVICE_NAMES_END_WITH
- FIELD_NAMES_EXCLUDE_PREPOSITIONS
Expand Down Expand Up @@ -69,9 +69,9 @@ lint:
# Linter rules option.
rules_option:
# MAX_LINE_LENGTH rule option.
max_line_length:
# max_line_length:
# Enforces a maximum line length
max_chars: 120
# max_chars: 120
# Specifies the character count for tab characters
tab_chars: 2

Expand Down
1 change: 0 additions & 1 deletion x/oracle/keeper/query_native_token_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ func TestQueryStakerInfosPaginated(t *testing.T) {
_, err := keeper.StakerInfos(wctx, nil)
require.ErrorIs(t, err, status.Error(codes.InvalidArgument, "invalid request"))
})

}

func createNStakerInfos(keeper *keeper.Keeper, ctx sdk.Context, assetID string, n int) []*types.StakerInfo {
Expand Down

0 comments on commit 4a5dbf9

Please sign in to comment.