Disable H803 check.

H803: Git commit title should not end with period.

I don't think we really care whether a commit title ends with a period
or not. Certainly not enough to warrant patches failing checks and
wasting people's time and CI resources.

Change-Id: I52fd73c35545943b1a7e2cec62ddb52a5f90a24b
Closes-bug: 1236621.
This commit is contained in:
Kieran Spear 2013-10-08 13:03:41 +11:00
parent 5eaa0d1e12
commit 02c504268d
1 changed files with 2 additions and 1 deletions

View File

@ -38,4 +38,5 @@ exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,p
# H4xx docstrings
# H701 empty localization string
# H702 Formatting operation should be outside of localization method call
ignore = E127,E128,H102,H4,H701,H702
# H803 git commit title should not end with period (disabled on purpose, see bug #1236621)
ignore = E127,E128,H102,H4,H701,H702,H803