]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-eruby.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-eruby.txt
1 ===============================================================================
2 ALE Eruby Integration                                       *ale-eruby-options*
3
4 There are four linters for `eruby` files:
5
6 - `erb`
7 - `erblint`
8 - `erubis`
9 - `erubi`
10 - `htmlbeautifier`
11 - `ruumba`
12
13 `erb` is in the Ruby standard library and is mostly universal. `erubis` is the
14 default parser in Rails between 3.0 and 5.1. `erubi` is the default in Rails
15 5.1 and later. `ruumba` can extract Ruby from eruby files and run rubocop on
16 the result. To selectively enable a subset, see |g:ale_linters|.
17
18
19 ===============================================================================
20 erb-formatter                                          *ale-eruby-erbformatter*
21
22                                     *ale-options.eruby_erbformatter_executable*
23                                           *g:ale_eruby_erbformatter_executable*
24                                           *b:ale_eruby_erbformatter_executable*
25 eruby_erbformatter_executable
26 g:ale_eruby_erbformatter_executable
27   Type: |String|
28   Default: `'erb-formatter'`
29
30   Override the invoked erb-formatter binary. This is useful for running
31   erb-formatter from binstubs or a bundle.
32
33
34 ===============================================================================
35 erblint                                                     *ale-eruby-erblint*
36
37                                          *ale-options.eruby_erblint_executable*
38                                                *g:ale_eruby_erblint_executable*
39                                                *b:ale_eruby_erblint_executable*
40 eruby_erblint_executable
41 g:ale_eruby_erblint_executable
42   Type: |String|
43   Default: `'erblint'`
44
45   Override the invoked erblint binary. This is useful for running erblint
46   from binstubs or a bundle.
47
48                                             *ale-options.eruby_erblint_options*
49                                                   *g:ale_eruby_erblint_options*
50                                                    *b:ale_ruby_erblint_options*
51 eruby_erblint_options
52 g:ale_eruby_erblint_options
53   Type: |String|
54   Default: `''`
55
56   This variable can be change to modify flags given to erblint.
57
58
59 ===============================================================================
60 htmlbeautifier                                       *ale-eruby-htmlbeautifier*
61
62                                   *ale-options.eruby_htmlbeautifier_executable*
63                                         *g:ale_eruby_htmlbeautifier_executable*
64                                         *b:ale_eruby_htmlbeautifier_executable*
65 eruby_htmlbeautifier_executable
66 g:ale_eruby_htmlbeautifier_executable
67   Type: |String|
68   Default: `'htmlbeautifier'`
69
70   Override the invoked htmlbeautifier binary. This is useful for running
71   htmlbeautifier from binstubs or a bundle.
72
73
74 ===============================================================================
75 ruumba                                                       *ale-eruby-ruumba*
76
77                                           *ale-options.eruby_ruumba_executable*
78                                                 *g:ale_eruby_ruumba_executable*
79                                                 *b:ale_eruby_ruumba_executable*
80 eruby_ruumba_executable
81 g:ale_eruby_ruumba_executable
82   Type: |String|
83   Default: `'ruumba'`
84
85   Override the invoked ruumba binary. This is useful for running ruumba
86   from binstubs or a bundle.
87
88                                              *ale-options.eruby_ruumba_options*
89                                                    *g:ale_eruby_ruumba_options*
90                                                     *b:ale_ruby_ruumba_options*
91 eruby_ruumba_options
92 g:ale_eruby_ruumba_options
93   Type: |String|
94   Default: `''`
95
96   This variable can be change to modify flags given to ruumba.
97
98
99 ===============================================================================
100   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: