├── .github └── workflows │ ├── codecov.sh │ ├── push.yml │ └── tag.yml ├── .gitignore ├── .godot.yaml ├── .golangci.yml ├── .goreleaser.yml ├── LICENSE ├── Makefile ├── README.md ├── checks.go ├── checks_test.go ├── cmd └── godot │ └── main.go ├── comment.go ├── file.go ├── file_test.go ├── go.mod ├── go.sum ├── godot.go ├── godot_test.go ├── settings.go └── testdata ├── check ├── README.md └── main.go ├── empty └── main.go ├── get ├── README.md └── main.go ├── line ├── main.go └── main.tpl ├── nocode └── main.go └── nocomments └── main.go /.github/workflows/codecov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/.github/workflows/codecov.sh -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/.gitignore -------------------------------------------------------------------------------- /.godot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/.godot.yaml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/README.md -------------------------------------------------------------------------------- /checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/checks.go -------------------------------------------------------------------------------- /checks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/checks_test.go -------------------------------------------------------------------------------- /cmd/godot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/cmd/godot/main.go -------------------------------------------------------------------------------- /comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/comment.go -------------------------------------------------------------------------------- /file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/file.go -------------------------------------------------------------------------------- /file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/file_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/go.sum -------------------------------------------------------------------------------- /godot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/godot.go -------------------------------------------------------------------------------- /godot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/godot_test.go -------------------------------------------------------------------------------- /settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/settings.go -------------------------------------------------------------------------------- /testdata/check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/testdata/check/README.md -------------------------------------------------------------------------------- /testdata/check/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/testdata/check/main.go -------------------------------------------------------------------------------- /testdata/empty/main.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/get/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/testdata/get/README.md -------------------------------------------------------------------------------- /testdata/get/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/testdata/get/main.go -------------------------------------------------------------------------------- /testdata/line/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/testdata/line/main.go -------------------------------------------------------------------------------- /testdata/line/main.tpl: -------------------------------------------------------------------------------- 1 | Template file 2 | -------------------------------------------------------------------------------- /testdata/nocode/main.go: -------------------------------------------------------------------------------- 1 | package nocode 2 | -------------------------------------------------------------------------------- /testdata/nocomments/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetafro/godot/HEAD/testdata/nocomments/main.go --------------------------------------------------------------------------------