├── .github ├── dependabot.yml └── workflows │ ├── auto-merge-dependabot.yml │ ├── go.yml │ ├── golangci-lint.yml │ ├── release.yml │ ├── update.yml │ └── yamllint.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── .yamllint.yml ├── LICENSE ├── Readme.md ├── Taskfile.yml ├── analyzer ├── analyzer.go └── analyzer_test.go ├── go.mod ├── go.sum ├── main.go └── testdata └── src ├── default-config └── default_config.go └── report-error-in-defer └── report-error-in-defer.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.github/workflows/auto-merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.github/workflows/yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.github/workflows/yamllint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nonamedreturns 2 | .vscode/ 3 | 4 | dist/ 5 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/Readme.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /analyzer/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/analyzer/analyzer.go -------------------------------------------------------------------------------- /analyzer/analyzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/analyzer/analyzer_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/main.go -------------------------------------------------------------------------------- /testdata/src/default-config/default_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/testdata/src/default-config/default_config.go -------------------------------------------------------------------------------- /testdata/src/report-error-in-defer/report-error-in-defer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefart/nonamedreturns/HEAD/testdata/src/report-error-in-defer/report-error-in-defer.go --------------------------------------------------------------------------------