You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace uses of interface{} in the code with the alias any.
Steps:
Run gofmt -w -s . at the root of the project.
Hand edit comments and string literals to replace interface{} with any. The templates in nvim/api_tool.go are a notable example of where hand editing is required.
Run go generate.
This change can create merge conflicts for work in progress. Should this change wait on any work in progress?
The text was updated successfully, but these errors were encountered:
Replace uses of
interface{}
in the code with the aliasany
.Steps:
gofmt -w -s .
at the root of the project.interface{}
withany
. The templates in nvim/api_tool.go are a notable example of where hand editing is required.go generate
.This change can create merge conflicts for work in progress. Should this change wait on any work in progress?
The text was updated successfully, but these errors were encountered: