├── .coveragerc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .pyup.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PREVIOUS_VERSIONS.md ├── README.md ├── VERSION.txt ├── _config.yml ├── assets ├── 200-200.png ├── 2000-2000.png ├── commit-helper.svg └── gifs │ ├── --debug.gif │ ├── --no-file.gif │ ├── all.gif │ ├── co-author.gif │ ├── commit.gif │ ├── flag-h.gif │ ├── generate-file.gif │ ├── single-line.gif │ └── tag-help.gif ├── commit_helper ├── __init__.py ├── __main__.py ├── conventions │ ├── __init__.py │ ├── atom.py │ ├── convention_help_handler.py │ ├── custom_convention.py │ ├── karma_angular.py │ ├── no_convention.py │ ├── symphony_cmf.py │ └── tagged.py └── utils │ ├── __init__.py │ ├── colors.py │ ├── file_handler.py │ ├── flag_commit_handler.py │ ├── text_utils.py │ └── utils.py ├── deploy.sh ├── dev-requirements.txt ├── install.sh ├── requirements.txt ├── setup.cfg ├── setup.py └── test ├── __init__.py ├── test_conventions.py └── test_utils.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | omit = venv/, test/ 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/.pyup.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /PREVIOUS_VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/PREVIOUS_VERSIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 3.4.18 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/200-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/200-200.png -------------------------------------------------------------------------------- /assets/2000-2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/2000-2000.png -------------------------------------------------------------------------------- /assets/commit-helper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/commit-helper.svg -------------------------------------------------------------------------------- /assets/gifs/--debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/--debug.gif -------------------------------------------------------------------------------- /assets/gifs/--no-file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/--no-file.gif -------------------------------------------------------------------------------- /assets/gifs/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/all.gif -------------------------------------------------------------------------------- /assets/gifs/co-author.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/co-author.gif -------------------------------------------------------------------------------- /assets/gifs/commit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/commit.gif -------------------------------------------------------------------------------- /assets/gifs/flag-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/flag-h.gif -------------------------------------------------------------------------------- /assets/gifs/generate-file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/generate-file.gif -------------------------------------------------------------------------------- /assets/gifs/single-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/single-line.gif -------------------------------------------------------------------------------- /assets/gifs/tag-help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/assets/gifs/tag-help.gif -------------------------------------------------------------------------------- /commit_helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit_helper/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/__main__.py -------------------------------------------------------------------------------- /commit_helper/conventions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit_helper/conventions/atom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/conventions/atom.py -------------------------------------------------------------------------------- /commit_helper/conventions/convention_help_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/conventions/convention_help_handler.py -------------------------------------------------------------------------------- /commit_helper/conventions/custom_convention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/conventions/custom_convention.py -------------------------------------------------------------------------------- /commit_helper/conventions/karma_angular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/conventions/karma_angular.py -------------------------------------------------------------------------------- /commit_helper/conventions/no_convention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/conventions/no_convention.py -------------------------------------------------------------------------------- /commit_helper/conventions/symphony_cmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/conventions/symphony_cmf.py -------------------------------------------------------------------------------- /commit_helper/conventions/tagged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/conventions/tagged.py -------------------------------------------------------------------------------- /commit_helper/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit_helper/utils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/utils/colors.py -------------------------------------------------------------------------------- /commit_helper/utils/file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/utils/file_handler.py -------------------------------------------------------------------------------- /commit_helper/utils/flag_commit_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/utils/flag_commit_handler.py -------------------------------------------------------------------------------- /commit_helper/utils/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/utils/text_utils.py -------------------------------------------------------------------------------- /commit_helper/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/commit_helper/utils/utils.py -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/deploy.sh -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | pip3 install -e . 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/test/test_conventions.py -------------------------------------------------------------------------------- /test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-filho/commit-helper/HEAD/test/test_utils.py --------------------------------------------------------------------------------