We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
now, the method need prefix for golint, is there any plan for support it? such as:
go lint report
gorose/orm.go Line 81: warning: comment on exported method Orm.Table should be of the form "Table ..." (golint)
orm.go source code
func (dba *Orm) Table(tab interface{}) IOrm { dba.GetISession().Bind(tab) //dba.table = dba.GetISession().GetTableName() return dba }
this need the comment like // Orm.Table ..., not // Table ...
// Orm.Table ...
// Table ...
The text was updated successfully, but these errors were encountered:
@fizzday Thanks for reporting. Can you make a small reproducible program?
As your description above, the warning message still indicates that the form is "Table ...".
Sorry, something went wrong.
No branches or pull requests
now, the method need prefix for golint, is there any plan for support it? such as:
go lint report
orm.go source code
this need the comment like
// Orm.Table ...
, not// Table ...
The text was updated successfully, but these errors were encountered: