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 Spec Integration *ale-spec-options*
5 ===============================================================================
6 Integration Information
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
13 Currently linters must be enabled globally. The rpmlint linter can be
16 let g:ale_linters = {'spec': ['rpmlint']}
19 ===============================================================================
20 rpmlint *ale-spec-rpmlint*
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
30 This variable sets executable used for rpmlint.
32 *ale-options.spec_rpmlint_options*
33 *g:ale_spec_rpmlint_options*
34 *b:ale_spec_rpmlint_options*
36 g:ale_spec_rpmlint_options
40 Set this to pass extra arguments to rpmlint.
42 For example, to instruct rpmlint to use a specific configuration file:
44 let g:ale_spec_rpmlint_options = '-f custom.cf'
47 ===============================================================================
48 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: