├── .gitignore ├── .travis.yml ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── cfmt.go ├── cfmt_test.go ├── codecov.yml ├── go.mod ├── go.sum └── images └── output.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/README.md -------------------------------------------------------------------------------- /cfmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/cfmt.go -------------------------------------------------------------------------------- /cfmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/cfmt_test.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/codecov.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/go.sum -------------------------------------------------------------------------------- /images/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/cfmt/HEAD/images/output.png --------------------------------------------------------------------------------