]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-groovy.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-groovy.txt
1 ===============================================================================
2 ALE Groovy Integration                                     *ale-groovy-options*
3
4
5 ===============================================================================
6 Integration Information
7
8 Linting and fixing of Groovy files is enabled with the integration of
9 `npm-groovy-lint`.
10
11
12 ===============================================================================
13 npm-groovy-lint                                    *ale-groovy-npm-groovy-lint*
14
15                                   *ale-options.groovy_npmgroovylint_executable*
16                                         *g:ale_groovy_npmgroovylint_executable*
17                                         *b:ale_groovy_npmgroovylint_executable*
18 groovy_npmgroovylint_executable
19 g:ale_groovy_npmgroovylint_executable
20   Type: |String|
21   Default: `'npm-groovy-lint'`
22
23   Location of the npm-groovy-lint binary file.
24
25                                      *ale-options.groovy_npmgroovylint_options*
26                                            *g:ale_groovy_npmgroovylint_options*
27                                            *b:ale_groovy_npmgroovylint_options*
28 groovy_npmgroovylint_options
29 g:ale_groovy_npmgroovylint_options
30   Type: |String|
31   Default: `'--loglevel warning'`
32
33   Additional npm-groovy-lint linter options.
34
35                                  *ale-options.groovy_npmgroovylint_fix_options*
36                                        *g:ale_groovy_npmgroovylint_fix_options*
37                                        *b:ale_groovy_npmgroovylint_fix_options*
38 groovy_npmgroovylint_fix_options
39 g:ale_groovy_npmgroovylint_fix_options
40   Type: |String|
41   Default: `'--fix'`
42
43   This variable can be used to configure fixing with npm-groovy-lint. It must
44   contain either `--fix` or `--format` for the fixer to work. See
45   `npm-groovy-lint --help` for more information on possible fix rules.
46
47
48 ===============================================================================
49   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: