├── .codeclimate.yml ├── .github ├── dependabot.yml └── workflows │ ├── goreleaser.yml │ └── test.yaml ├── .gitignore ├── .goreleaser.yml ├── .travis.yml ├── LICENSE ├── README.md ├── benchmark_test.go ├── command_line.go ├── example ├── big │ ├── data.csv │ └── run.sh ├── csv_with_header │ ├── data.csv │ └── run.sh ├── data.csv ├── delimiter │ ├── data.csv │ └── run.sh ├── numeric_as_string │ ├── data.csv │ └── run.sh ├── space_in_sheet_name │ ├── data.csv │ └── run.sh ├── template.xlsx └── test │ ├── excel.xlsx │ └── t.go ├── go.mod ├── go.sum ├── main.go ├── main_test.go ├── write.go └── write_test.go /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/.github/workflows/goreleaser.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/README.md -------------------------------------------------------------------------------- /benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/benchmark_test.go -------------------------------------------------------------------------------- /command_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/command_line.go -------------------------------------------------------------------------------- /example/big/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/big/data.csv -------------------------------------------------------------------------------- /example/big/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/big/run.sh -------------------------------------------------------------------------------- /example/csv_with_header/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/csv_with_header/data.csv -------------------------------------------------------------------------------- /example/csv_with_header/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/csv_with_header/run.sh -------------------------------------------------------------------------------- /example/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/data.csv -------------------------------------------------------------------------------- /example/delimiter/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/delimiter/data.csv -------------------------------------------------------------------------------- /example/delimiter/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/delimiter/run.sh -------------------------------------------------------------------------------- /example/numeric_as_string/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/numeric_as_string/data.csv -------------------------------------------------------------------------------- /example/numeric_as_string/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/numeric_as_string/run.sh -------------------------------------------------------------------------------- /example/space_in_sheet_name/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/space_in_sheet_name/data.csv -------------------------------------------------------------------------------- /example/space_in_sheet_name/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/space_in_sheet_name/run.sh -------------------------------------------------------------------------------- /example/template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/template.xlsx -------------------------------------------------------------------------------- /example/test/excel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/test/excel.xlsx -------------------------------------------------------------------------------- /example/test/t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/example/test/t.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/main_test.go -------------------------------------------------------------------------------- /write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/write.go -------------------------------------------------------------------------------- /write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentax/csv2xlsx/HEAD/write_test.go --------------------------------------------------------------------------------