X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0ee596c5c5e11fc79598407eaf22f83d279f7e9e..5a4872f466ebd76ddd532bdf2798554421c53df4:/.vim/bundle/ale/doc/ale-spec.txt?ds=sidebyside diff --git a/.vim/bundle/ale/doc/ale-spec.txt b/.vim/bundle/ale/doc/ale-spec.txt new file mode 100644 index 00000000..bcacba2e --- /dev/null +++ b/.vim/bundle/ale/doc/ale-spec.txt @@ -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: