├── .circleci └── config.yml ├── .codecov.yml ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .nycrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── mocha.opts ├── package.json ├── src ├── cli.js ├── detectors.js ├── index.js └── index.spec.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: off 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@hutson/eslint-config" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.nyc_output/ 2 | /coverage/ 3 | /node_modules/ 4 | yarn-error.log 5 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@hutson/nyc-config" 3 | } 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/README.md -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/mocha.opts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/detectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/src/detectors.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/src/index.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-commits-detector/HEAD/yarn.lock --------------------------------------------------------------------------------