go-lint:exported type Post should have comment or be unexported.

v s c o d e vscode vscode中安装 g o − l i n t go-lint golint插件后,我的golang代码出现了一些warning,这里我把常见错误揉在一起
结构体的代码如下:
go-lint:exported type Post should have comment or be unexported._第1张图片
warning信息如下:
在这里插入图片描述
解决方式:
1、我们要在结构体的上一行编写函数注释文件,而且一定要用这个函数名称开头,注意外部需要调用的话,函数名/结构体名大写
2、尽量不要使用在golang语言中使用下划线命名,改user_name为userName.
修改后的代码:
go-lint:exported type Post should have comment or be unexported._第2张图片
//Post后面加个空格就ok了
最后 c t r l + S ctrl+S ctrl+S进行 G o l a n g Golang Golang语言自动排版

你可能感兴趣的:(Golang语言基础)