├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── prepare-commit-msg ├── CHANGELOG.md ├── LICENSE ├── README.md ├── console.png ├── package.json ├── pnpm-lock.yaml ├── src ├── config.ts ├── index.ts ├── lint.ts ├── message.ts ├── prompt.ts └── withDefault.ts ├── test ├── message.ts └── tsconfig.json └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | .nyc_output/ 4 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/.husky/prepare-commit-msg -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/README.md -------------------------------------------------------------------------------- /console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/console.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/src/lint.ts -------------------------------------------------------------------------------- /src/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/src/message.ts -------------------------------------------------------------------------------- /src/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/src/prompt.ts -------------------------------------------------------------------------------- /src/withDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/src/withDefault.ts -------------------------------------------------------------------------------- /test/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/test/message.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvanbruegge/commithelper/HEAD/tsconfig.json --------------------------------------------------------------------------------