qiniu / reviewbot

Empower Your Code Quality with Self-Hosted Automated Analysis and Review
https://reviewbot-x.netlify.app
Apache License 2.0
35 stars 15 forks source link

the variable name `XXXX` should conform to the `errXxx` format (errname) #442

Open wwcchh0123 opened 1 week ago

wwcchh0123 commented 1 week ago

lint 解释

错误用法

// 定义一个错误变量,不符合 errXXX  命名约定
var newkszbZeroBwError = errors.New("this is a zero bandwidth error")

正确用法

// 符合命名约定的错误变量
var errZeroBandwidth = errors.New("this is a zero bandwidth error")
var ErrZeroBandwidth = errors.New("this is a zero bandwidth error")