├── .gitignore ├── LICENSE ├── README.md ├── bin └── commit-template ├── lib └── commit-template.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lennym/commit-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lennym/commit-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lennym/commit-template/HEAD/README.md -------------------------------------------------------------------------------- /bin/commit-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lennym/commit-template/HEAD/bin/commit-template -------------------------------------------------------------------------------- /lib/commit-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lennym/commit-template/HEAD/lib/commit-template.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lennym/commit-template/HEAD/package.json --------------------------------------------------------------------------------