Skip to content

Commit 724a1f9

Browse files
committedMay 13, 2015
Add links to home pages for third-party tools
This makes it easier for relevant documentation for these tools to be discovered. Closes sds#210
1 parent c5264c5 commit 724a1f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+94
-2
lines changed
 

‎lib/overcommit/hook/commit_msg/gerrit_change_id.rb

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ module Overcommit::Hook::CommitMsg
55
# the reality is that if you want to _ensure_ the Change-Id is included then
66
# you need to do it in a commit-msg hook. This is because the user could still
77
# edit the message after a prepare-commit-msg hook was run.
8+
#
9+
# @see https://code.google.com/p/gerrit/
810
class GerritChangeId < Base
911
SCRIPT_LOCATION = Overcommit::Utils.script_path('gerrit-change-id')
1012

‎lib/overcommit/hook/commit_msg/spell_check.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
require 'tempfile'
22

33
module Overcommit::Hook::CommitMsg
4-
# Checks the commit message for potential misspellings
4+
# Checks the commit message for potential misspellings with `hunspell`.
5+
#
6+
# @see http://hunspell.sourceforge.net/
57
class SpellCheck < Base
68
Misspelling = Struct.new(:word, :suggestions)
79

0 commit comments

Comments
 (0)
Please sign in to comment.