]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-spec.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / doc / ale-spec.txt
1 ===============================================================================
2 ALE Spec Integration                                         *ale-spec-options*
3                                                          *ale-integration-spec*
4
5 ===============================================================================
6 Integration Information
7
8   The rpmlint linter is disabled by default, because running rpmlint can
9   result in the execution of code embedded in the spec file and rpmlint makes
10   no distinction between checks which are safe to run on untrusted files and
11   those which are not.
12
13   Currently linters must be enabled globally.  The rpmlint linter can be
14   enabled with:
15 >
16   let g:ale_linters = {'spec': ['rpmlint']}
17 <
18
19 ===============================================================================
20 rpmlint                                                      *ale-spec-rpmlint*
21
22                                           *ale-options.spec_rpmlint_executable*
23                                                 *g:ale_spec_rpmlint_executable*
24                                                 *b:ale_spec_rpmlint_executable*
25 spec_rpmlint_executable
26 g:ale_spec_rpmlint_executable
27   Type: |String|
28   Default: `'rpmlint'`
29
30   This variable sets executable used for rpmlint.
31
32                                              *ale-options.spec_rpmlint_options*
33                                                    *g:ale_spec_rpmlint_options*
34                                                    *b:ale_spec_rpmlint_options*
35 spec_rpmlint_options
36 g:ale_spec_rpmlint_options
37   Type: |String|
38   Default: `''`
39
40   Set this to pass extra arguments to rpmlint.
41
42   For example, to instruct rpmlint to use a specific configuration file:
43 >
44   let g:ale_spec_rpmlint_options = '-f custom.cf'
45 <
46
47 ===============================================================================
48   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: