File tree 1 file changed +44
-0
lines changed
1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Always validate the PR title, and ignore the commits
2
+ titleOnly : true
3
+
4
+ # Always validate all commits, and ignore the PR title
5
+ # commitsOnly: true
6
+
7
+ # Always validate the PR title AND all the commits
8
+ # titleAndCommits: true
9
+
10
+ # Require at least one commit to be valid
11
+ # this is only relevant when using commitsOnly: true or titleAndCommits: true,
12
+ # which validate all commits by default
13
+ # anyCommit: true
14
+
15
+ # You can define a list of valid scopes
16
+ # scopes:
17
+ # - scope1
18
+ # - scope2
19
+ # ...
20
+
21
+ # By default types specified in commitizen/conventional-commit-types is used.
22
+ # See: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json
23
+ # You can override the valid types
24
+ # types:
25
+ # - feat
26
+ # - fix
27
+ # - docs
28
+ # - style
29
+ # - refactor
30
+ # - perf
31
+ # - test
32
+ # - build
33
+ # - ci
34
+ # - chore
35
+ # - revert
36
+
37
+ # Allow use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns")
38
+ # this is only relevant when using commitsOnly: true (or titleAndCommits: true)
39
+ # allowMergeCommits: true
40
+
41
+ # Allow use of Revert commits (eg on github: "Revert "feat: ride unicorns"")
42
+ # this is only relevant when using commitsOnly: true (or titleAndCommits: true)
43
+ # allowRevertCommits: true
44
+
You can’t perform that action at this time.
0 commit comments