├── .gitignore ├── .travis.yml ├── README.md ├── check_test.go ├── main.go └── testdata ├── inner.go └── inner.golden.out /.gitignore: -------------------------------------------------------------------------------- 1 | copyfighter 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhodges/copyfighter/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhodges/copyfighter/HEAD/README.md -------------------------------------------------------------------------------- /check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhodges/copyfighter/HEAD/check_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhodges/copyfighter/HEAD/main.go -------------------------------------------------------------------------------- /testdata/inner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhodges/copyfighter/HEAD/testdata/inner.go -------------------------------------------------------------------------------- /testdata/inner.golden.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhodges/copyfighter/HEAD/testdata/inner.golden.out --------------------------------------------------------------------------------