-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommitlint.config.js
More file actions
15 lines (13 loc) · 826 Bytes
/
Copy pathcommitlint.config.js
File metadata and controls
15 lines (13 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = { extends: ["@commitlint/config-conventional"] };
// type(scope?): subject
// build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
// ci: Changes to our CI configuration files and scripts (example scopes: Gitlab CI, Circle, BrowserStack, SauceLabs)
// chore: add something without touching production code (Eg: update npm dependencies)
// docs: Documentation only changes
// feat: A new feature
// fix: A bug fix
// perf: A code change that improves performance
// refactor: A code change that neither fixes a bug nor adds a feature
// revert: Reverts a previous commit
// style: Changes that do not affect the meaning of the code (Eg: adding white-space, formatting, missing semi-colons, etc)
// test: Adding missing tests or correcting existing tests