forked from golangci/golangci-lint
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add errname linter * bump errname version
- Loading branch information
Showing
5 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package golinters | ||
|
||
import ( | ||
"github.com/Antonboom/errname/pkg/analyzer" | ||
"golang.org/x/tools/go/analysis" | ||
|
||
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis" | ||
) | ||
|
||
func NewErrName() *goanalysis.Linter { | ||
analyzers := []*analysis.Analyzer{ | ||
analyzer.New(), | ||
} | ||
|
||
return goanalysis.NewLinter( | ||
"errname", | ||
"Checks that sentinel errors are prefixed with the `Err` and error types are suffixed with the `Error`.", | ||
analyzers, | ||
nil, | ||
).WithLoadMode(goanalysis.LoadModeTypesInfo) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
//args: -Eerrname | ||
package testdata | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
) | ||
|
||
var ( | ||
EOF = errors.New("end of file") | ||
ErrEndOfFile = errors.New("end of file") | ||
errEndOfFile = errors.New("end of file") | ||
|
||
EndOfFileError = errors.New("end of file") // ERROR "the variable name `EndOfFileError` should conform to the `ErrXxx` format" | ||
ErrorEndOfFile = errors.New("end of file") // ERROR "the variable name `ErrorEndOfFile` should conform to the `ErrXxx` format" | ||
EndOfFileErr = errors.New("end of file") // ERROR "the variable name `EndOfFileErr` should conform to the `ErrXxx` format" | ||
endOfFileError = errors.New("end of file") // ERROR "the variable name `endOfFileError` should conform to the `errXxx` format" | ||
errorEndOfFile = errors.New("end of file") // ERROR "the variable name `errorEndOfFile` should conform to the `errXxx` format" | ||
) | ||
|
||
const maxSize = 256 | ||
|
||
var ( | ||
ErrOutOfSize = fmt.Errorf("out of size (max %d)", maxSize) | ||
errOutOfSize = fmt.Errorf("out of size (max %d)", maxSize) | ||
|
||
OutOfSizeError = fmt.Errorf("out of size (max %d)", maxSize) // ERROR "the variable name `OutOfSizeError` should conform to the `ErrXxx` format" | ||
outOfSizeError = fmt.Errorf("out of size (max %d)", maxSize) // ERROR "the variable name `outOfSizeError` should conform to the `errXxx` format" | ||
) | ||
|
||
func errInsideFuncIsNotSentinel() error { | ||
var lastErr error | ||
return lastErr | ||
} | ||
|
||
type NotErrorType struct{} | ||
|
||
func (t NotErrorType) Set() {} | ||
func (t NotErrorType) Get() {} | ||
|
||
type DNSConfigError struct{} | ||
|
||
func (D DNSConfigError) Error() string { return "DNS config error" } | ||
|
||
type someTypeWithoutPtr struct{} // ERROR "the type name `someTypeWithoutPtr` should conform to the `xxxError` format" | ||
func (s someTypeWithoutPtr) Error() string { return "someTypeWithoutPtr" } | ||
|
||
type SomeTypeWithoutPtr struct{} // ERROR "the type name `SomeTypeWithoutPtr` should conform to the `XxxError` format" | ||
func (s SomeTypeWithoutPtr) Error() string { return "SomeTypeWithoutPtr" } | ||
|
||
type someTypeWithPtr struct{} // ERROR "the type name `someTypeWithPtr` should conform to the `xxxError` format" | ||
func (s *someTypeWithPtr) Error() string { return "someTypeWithPtr" } | ||
|
||
type SomeTypeWithPtr struct{} // ERROR "the type name `SomeTypeWithPtr` should conform to the `XxxError` format" | ||
func (s *SomeTypeWithPtr) Error() string { return "SomeTypeWithPtr" } |