├── .editorconfig ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── index.js ├── lib ├── cz-emoji-adapter.js ├── emojis.json ├── semantic-release-plugins │ └── analyze.js └── validate-commit-msg.js ├── package.json ├── readme.md ├── screenshot.png └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v7.8.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/LICENSE -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/index.js -------------------------------------------------------------------------------- /lib/cz-emoji-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/lib/cz-emoji-adapter.js -------------------------------------------------------------------------------- /lib/emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/lib/emojis.json -------------------------------------------------------------------------------- /lib/semantic-release-plugins/analyze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/lib/semantic-release-plugins/analyze.js -------------------------------------------------------------------------------- /lib/validate-commit-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/lib/validate-commit-msg.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/screenshot.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tay1orjones/hyper-clean/HEAD/yarn.lock --------------------------------------------------------------------------------