]> git.madduck.net Git - etc/vim.git/blobdiff - .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
diff --git a/.vim/bundle/ale/doc/ale-spec.txt b/.vim/bundle/ale/doc/ale-spec.txt
new file mode 100644 (file)
index 0000000..bcacba2
--- /dev/null
@@ -0,0 +1,48 @@
+===============================================================================
+ALE Spec Integration                                         *ale-spec-options*
+                                                         *ale-integration-spec*
+
+===============================================================================
+Integration Information
+
+  The rpmlint linter is disabled by default, because running rpmlint can
+  result in the execution of code embedded in the spec file and rpmlint makes
+  no distinction between checks which are safe to run on untrusted files and
+  those which are not.
+
+  Currently linters must be enabled globally.  The rpmlint linter can be
+  enabled with:
+>
+  let g:ale_linters = {'spec': ['rpmlint']}
+<
+
+===============================================================================
+rpmlint                                                      *ale-spec-rpmlint*
+
+                                          *ale-options.spec_rpmlint_executable*
+                                                *g:ale_spec_rpmlint_executable*
+                                                *b:ale_spec_rpmlint_executable*
+spec_rpmlint_executable
+g:ale_spec_rpmlint_executable
+  Type: |String|
+  Default: `'rpmlint'`
+
+  This variable sets executable used for rpmlint.
+
+                                             *ale-options.spec_rpmlint_options*
+                                                   *g:ale_spec_rpmlint_options*
+                                                   *b:ale_spec_rpmlint_options*
+spec_rpmlint_options
+g:ale_spec_rpmlint_options
+  Type: |String|
+  Default: `''`
+
+  Set this to pass extra arguments to rpmlint.
+
+  For example, to instruct rpmlint to use a specific configuration file:
+>
+  let g:ale_spec_rpmlint_options = '-f custom.cf'
+<
+
+===============================================================================
+  vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: