Skip to content

Commit 1f8cd21

Browse files
committed
Document local hooks. Resolves #50
1 parent c9d4b99 commit 1f8cd21

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

index.mako

+25
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,31 @@
296296
<p>If the <code>args</code> property is empty or not defined, your script will be called:</p>
297297
<pre>path/to/script-or-system-exe dir/file1 dir/file2 file3</pre>
298298

299+
<h2 id="repository-local-hooks">Repository Local Hooks</h2>
300+
<p>Repository-local hooks are useful when:</p>
301+
<ul>
302+
<li>The scripts are tightly coupled to the repository and it makes sense to distribute the hook scripts with the repository.</li>
303+
<li>Hooks require state that is only present in a built artifact of your repository (such as your app's virtualenv for pylint)</li>
304+
</ul>
305+
<p>You can configure repository-local hooks by specifying the <code>repo</code> as the sentinel <code>local</code>.</p>
306+
<p><code>local</code> hooks can be either <code>script</code> or <code>system</code> hooks.</p>
307+
<p>A <code>local</code> hook must define <code>id</code>, <code>name</code>, <code>language</code>, <code>entry</code>, and <code>files</code> as specified under <a href="#new-hooks">Creating new hooks</a></p>
308+
<p>Here's an example configuration with a few <code>local</code> hooks:</p>
309+
<pre>
310+
- repo: local
311+
hooks:
312+
- id: pylint
313+
name: pylint
314+
entry: python -m pylint.__main__
315+
language: system
316+
files: \.py$
317+
- id: check-x
318+
name: Check X
319+
entry: ./bin/check-x.sh
320+
language: script
321+
files: \.x$
322+
</pre>
323+
299324
<h2 id="overriding-language-version">Overriding Language Version</h2>
300325
<p>Sometimes you only want to run the hooks on a specific version of the language. For each language, they default to using the system installed language (So for example if I&rsquo;m running <code>python2.6</code> and a hook specifies <code>python</code>, pre-commit will run the hook using <code>python2.6</code>). Sometimes you don&rsquo;t want the default system installed version so you can override this on a per-hook basis by setting the <code>language_version</code>.</p>
301326
<pre>

0 commit comments

Comments
 (0)