-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitlint
68 lines (56 loc) · 2.33 KB
/
.gitlint
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
58
59
60
61
62
63
64
65
66
67
68
# All these sections are optional, edit this file as you like.
[general]
ignore=T1, T2, T3, T8, B1, B2, B4, B6
# verbosity should be a value between 1 and 3, the commandline -v flags take precedence over this
verbosity = 3
# By default gitlint will ignore merge commits. Set to 'false' to disable.
ignore-merge-commits=true
ignore-revert-commits=false
ignore-fixup-commits=false
ignore-squash-commits=false
# Enable debug mode (prints more output). Disabled by default
debug = false
# Set the extra-path where gitlint will search for user defined rules
# See http://jorisroovers.github.io/gitlint/user_defined_rules for details
extra-path=scripts/gitlint
#################### Title #####################
[title-length]
line-max-length-no-revert = 80
line-max-length-revert = 102
[title-must-not-contain-word]
# Comma-separated list of words that should not occur in the title. Matching is case
# insensitive. It's fine if the keyword occurs as part of a larger word (so "WIPING"
# will not cause a violation, but "WIP: my title" will.
# words=wip
[title-match-regex]
# python like regex (https://docs.python.org/2/library/re.html) that the
# commit-msg title must be matched to.
# Note that the regex can contradict with other rules if not used correctly
# (e.g. title-must-not-contain-word).
#regex=^\S.*(:\s)[A-Z]+.*[^.,?!]$
#################### Body And Footer#####################
[body-and-footer-max-line-count]
max-line-count-in-body = 100
max-line-count-in-footer = 20
[body-min-length]
min-length = 15
[body-or-footer-line-length]
max-line-length-no-url-in-body = 100
max-line-length-no-url-in-footer = 100
[title-or-message-contains-chinese]
contains-chinese = .*[\u4e00-\u9fa5]+.*
[link-in-footer-check]
#Turn off this check by setting option:
#prefix-for-closes-tag = disabled
prefix-for-closes-tag = https://gitee.com/openeuler/
[body-changed-file-mention]
# List of files that need to be explicitly mentioned in the body when they are changed
# This is useful for when developers often erroneously edit certain files or git submodules.
# By specifying this rule, developers can only change the file when they explicitly reference
# it in the commit message.
#files=gitlint/rules.py,README.md
[body-match-regex]
# Ensure the body ends with Reviewed-By: <some value>
# regex=Reviewed-By:(.*)$
# Ensure body contains the word "Foo" somewhere
# regex=(*.)Foo(.*)