-
Notifications
You must be signed in to change notification settings - Fork 414
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issues with in-package detection and name conflict resolution
- Loading branch information
1 parent
4bbd9d2
commit ce0236e
Showing
11 changed files
with
187 additions
and
165 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
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,11 @@ | ||
package pkg | ||
|
||
import "fmt" | ||
|
||
var ( | ||
ErrNoConfigFile = fmt.Errorf("no config file exists") | ||
ErrNoGoFilesFoundInRoot = fmt.Errorf("no go files found in root search path") | ||
ErrPkgNotFound = fmt.Errorf("package not found in config") | ||
ErrGoModNotFound = fmt.Errorf("no go.mod file found") | ||
ErrGoModInvalid = fmt.Errorf("go.mod file has no module line") | ||
) |
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
69 changes: 34 additions & 35 deletions
69
pkg/fixtures/method_args/same_name_arg_and_type/mock_interfaceA_test.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.