├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── conform.go ├── conform_test.go ├── go.mod └── go.sum /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leebenson/conform/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leebenson/conform/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leebenson/conform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leebenson/conform/HEAD/README.md -------------------------------------------------------------------------------- /conform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leebenson/conform/HEAD/conform.go -------------------------------------------------------------------------------- /conform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leebenson/conform/HEAD/conform_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leebenson/conform/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leebenson/conform/HEAD/go.sum --------------------------------------------------------------------------------