├── .gitignore ├── .vcmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc └── GIT_COMMIT_STANDARD.md ├── img └── git-commit-message-mindmap.png ├── package.json └── src └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | /lib 4 | node_modules 5 | npm-debug.log -------------------------------------------------------------------------------- /.vcmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feflow/git-commit-style-guide/HEAD/.vcmrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feflow/git-commit-style-guide/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feflow/git-commit-style-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feflow/git-commit-style-guide/HEAD/README.md -------------------------------------------------------------------------------- /doc/GIT_COMMIT_STANDARD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feflow/git-commit-style-guide/HEAD/doc/GIT_COMMIT_STANDARD.md -------------------------------------------------------------------------------- /img/git-commit-message-mindmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feflow/git-commit-style-guide/HEAD/img/git-commit-message-mindmap.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feflow/git-commit-style-guide/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feflow/git-commit-style-guide/HEAD/src/index.js --------------------------------------------------------------------------------