All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 ===============================================================================
2 ALE Git Commit Integration *ale-gitcommit-options*
5 ===============================================================================
6 gitlint *ale-gitcommit-gitlint*
8 *ale-options.gitcommit_gitlint_executable*
9 *g:ale_gitcommit_gitlint_executable*
10 *b:ale_gitcommit_gitlint_executable*
11 gitcommit_gitlint_executable
12 g:ale_gitcommit_gitlint_executable
16 This variable can be changed to modify the executable used for gitlint.
18 *ale-options.gitcommit_gitlint_options*
19 *g:ale_gitcommit_gitlint_options*
20 *b:ale_gitcommit_gitlint_options*
21 gitcommit_gitlint_options
22 g:ale_gitcommit_gitlint_options
26 This variable can be changed to add command-line arguments to the gitlint
27 invocation. For example, you can specify the path to a configuration file. >
29 let g:ale_gitcommit_gitlint_options = '-C /home/user/.config/gitlint.ini'
31 You can also disable particular error codes using this option. For example,
32 you can ignore errors for git commits with a missing body. >
34 let g:ale_gitcommit_gitlint_options = '--ignore B6'
36 *ale-options.gitcommit_gitlint_use_global*
37 *g:ale_gitcommit_gitlint_use_global*
38 *b:ale_gitcommit_gitlint_use_global*
39 gitcommit_gitlint_use_global
40 g:ale_gitcommit_gitlint_use_global
42 Default: `get(g:, 'ale_use_global_executables', 0)`
44 This variable controls whether or not ALE will search for gitlint in a
45 virtualenv directory first. If this variable is set to `1`, then ALE will
46 always use |g:ale_gitcommit_gitlint_executable| for the executable path.
48 Both variables can be set with `b:` buffer variables instead.
51 ===============================================================================
52 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: