-
-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support rdjsonl as input format #674
Conversation
haya14busa
commented
Jul 20, 2020
•
edited
Loading
edited
- Updated Unreleased section in CHANGELOG or it's not notable changes.
// RDJSONLParser is parser for rdjsonl format. | ||
type RDJSONLParser struct{} | ||
|
||
func NewRDJSONLParser() *RDJSONLParser { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[golint-circleci] reported by reviewdog 🐶
exported function NewRDJSONLParser should have comment or be unexported
return &RDJSONLParser{} | ||
} | ||
|
||
func (p *RDJSONLParser) Parse(r io.Reader) ([]*CheckResult, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[golint-circleci] reported by reviewdog 🐶
exported method RDJSONLParser.Parse should have comment or be unexported
// RDJSONLParser is parser for rdjsonl format. | ||
type RDJSONLParser struct{} | ||
|
||
func NewRDJSONLParser() *RDJSONLParser { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[golint-pr-review] reported by reviewdog 🐶
exported function NewRDJSONLParser should have comment or be unexported
return &RDJSONLParser{} | ||
} | ||
|
||
func (p *RDJSONLParser) Parse(r io.Reader) ([]*CheckResult, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[golint-pr-review] reported by reviewdog 🐶
exported method RDJSONLParser.Parse should have comment or be unexported