├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── dependabot.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── cli.js ├── config └── config.default.js ├── example ├── .validate-branch-namerc.json └── pre-commit ├── index.js ├── lib ├── getConfig.js └── validateBranchName.js ├── logo_transparent.png ├── package.json └── test ├── cjs_config └── .validate-branch-namerc.cjs ├── cli.test.js ├── common_config └── .validate-branch-namerc ├── config.test.js └── validateBranchName.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/cli.js -------------------------------------------------------------------------------- /config/config.default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/config/config.default.js -------------------------------------------------------------------------------- /example/.validate-branch-namerc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/example/.validate-branch-namerc.json -------------------------------------------------------------------------------- /example/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/example/pre-commit -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/index.js -------------------------------------------------------------------------------- /lib/getConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/lib/getConfig.js -------------------------------------------------------------------------------- /lib/validateBranchName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/lib/validateBranchName.js -------------------------------------------------------------------------------- /logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/logo_transparent.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/package.json -------------------------------------------------------------------------------- /test/cjs_config/.validate-branch-namerc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/test/cjs_config/.validate-branch-namerc.cjs -------------------------------------------------------------------------------- /test/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/test/cli.test.js -------------------------------------------------------------------------------- /test/common_config/.validate-branch-namerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/test/common_config/.validate-branch-namerc -------------------------------------------------------------------------------- /test/config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/test/config.test.js -------------------------------------------------------------------------------- /test/validateBranchName.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsonMa/validate-branch-name/HEAD/test/validateBranchName.test.js --------------------------------------------------------------------------------