-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommitizen.config.js
More file actions
57 lines (56 loc) · 1.36 KB
/
commitizen.config.js
File metadata and controls
57 lines (56 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const types = [
{
value: "feat",
name: "✨ Features: A new feature",
},
{
value: "fix",
name: "🐛 Bug Fixes: A bug fix",
},
{
value: "docs",
name: "📚 Documentation: Documentation only changes",
},
{
value: "style",
name:
"💎 Styles: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
},
{
value: "refactor",
name:
"📦 Code Refactoring: A code change that neither fixes a bug nor adds a feature",
},
{
value: "perf",
name:
"🚀 Performance Improvements: A code change that improves performance",
},
{
value: "test",
name: "🚨 Tests: Adding missing tests or correcting existing tests",
},
{
value: "build",
name:
"🛠 Builds: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
},
{
value: "ci",
name:
"⚙️ Continuous Integrations: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
},
{
value: "chore",
name: "♻️ Other changes that don't modify src or test files",
},
{
value: "revert",
name: "🗑 Reverts: Reverts a previous commit",
},
];
module.exports = {
types,
allowCustomScopes: false,
allowBreakingChanges: ["feat"],
};