├── .github └── workflows │ ├── release.yaml │ ├── reviewdog.yml │ └── test.yaml ├── .gitignore ├── CHANGELOG.md ├── CREDITS ├── LICENSE ├── Makefile ├── README.md ├── bin └── .gitignore ├── cli.go ├── cmd └── make2help │ └── main.go ├── codecov.yml ├── go.mod ├── go.sum ├── make2help.go ├── make2help_test.go ├── rules.go ├── rules_test.go └── testdata └── Makefile /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/cli.go -------------------------------------------------------------------------------- /cmd/make2help/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/cmd/make2help/main.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/go.sum -------------------------------------------------------------------------------- /make2help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/make2help.go -------------------------------------------------------------------------------- /make2help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/make2help_test.go -------------------------------------------------------------------------------- /rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/rules.go -------------------------------------------------------------------------------- /rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/rules_test.go -------------------------------------------------------------------------------- /testdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Songmu/make2help/HEAD/testdata/Makefile --------------------------------------------------------------------------------