└── docs ├── _config.yml ├── index.html └── readme.md /docs/_config.yml: -------------------------------------------------------------------------------- 1 | gems: 2 | - jekyll-redirect-from -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | commitlint moved to https://conventional-changelog.github.io/commitlint/#/ 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: / 3 | redirect_to: 'https://conventional-changelog.github.io/commitlint/' 4 | --- --------------------------------------------------------------------------------