forked from zulip/zulip-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlint
57 lines (44 loc) · 1.94 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
[general]
ignore=title-trailing-punctuation, body-is-missing, body-min-length, title-must-not-contain-word
# ZT: These are custom rules written for Zulip-Terminal, included by default
extra-path=tools/gitlint-extra-rules.py
# Added to acknowledge that eg. ignore-by-title regex
regex-style-search=True
# verbosity should be a value between 1 and 3, the commandline -v flags take precedence over this
# verbosity = 2
# By default gitlint will ignore merge commits. Set to 'false' to disable.
# ignore-merge-commits=true
# By default gitlint will ignore fixup commits. Set to 'false' to disable.
# ignore-fixup-commits=true
# By default gitlint will ignore squash commits. Set to 'false' to disable.
# ignore-squash-commits=true
# Enable debug mode (prints more output). Disabled by default.
# debug=true
[title-max-length]
# ZT: Keep this at 72 (Zulip has 76)
line-length=72
[body-max-line-length]
# ZT: This matches the Zulip preference for short body line lengths
line-length=76
[area-formatting]
# This is a ZT custom rule; these are excluded from the lower-case area rule
exclusions=WIP, DEBUG, README, CHANGELOG, LICENSE, FAQ
[ignore-by-title]
# Ignore all rules for commits of which the title matches below
# ZT: FIXME Do we need this?
regex=^DEBUG(.*)
ignore=all
# [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
# [ignore-by-body]
# Ignore certain rules for commits of which the body has a line that matches a regex
# E.g. Match bodies that have a line that that contain "release"
# regex=(.*)release(.*)
#
# Ignore certain rules, you can reference them by their id or by their full name
# Use 'all' to ignore all rules
# ignore=T1,body-min-length