Skip to content

Commit

Permalink
remove omitempty on int
Browse files Browse the repository at this point in the history
  • Loading branch information
Reuven committed Mar 20, 2023
1 parent 1549527 commit c3a479d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checker/checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type BackwardCompatibilityError struct {
Id string `json:"id,omitempty" yaml:"id,omitempty"`
Text string `json:"text,omitempty" yaml:"text,omitempty"`
Comment string `json:"comment,omitempty" yaml:"comment,omitempty"`
Level int `json:"level,omitempty" yaml:"level,omitempty"`
Level int `json:"level" yaml:"level"`
Operation string `json:"operation,omitempty" yaml:"operation,omitempty"`
Path string `json:"path,omitempty" yaml:"path,omitempty"`
Source string `json:"source,omitempty" yaml:"source,omitempty"`
Expand Down

0 comments on commit c3a479d

Please sign in to comment.