]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-vue.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:

Do not set EDITOR/VISUAL for shell
[etc/vim.git] / .vim / bundle / ale / doc / ale-vue.txt
1 ===============================================================================
2 ALE Vue Integration                                           *ale-vue-options*
3
4
5 ===============================================================================
6 cspell                                                         *ale-vue-cspell*
7
8 See |ale-cspell-options|
9
10
11 ===============================================================================
12 prettier                                                     *ale-vue-prettier*
13
14 See |ale-javascript-prettier| for information about the available options.
15
16
17 ===============================================================================
18 vls                                                               *ale-vue-vls*
19
20                                                *ale-options.vue_vls_executable*
21                                                      *g:ale_vue_vls_executable*
22                                                      *b:ale_vue_vls_executable*
23 vue_vls_executable
24 g:ale_vue_vls_executable
25   Type: |String|
26   Default: `'vls'`
27
28   See |ale-integrations-local-executables|
29
30                                                *ale-options.vue_vls_use_global*
31                                                      *g:ale_vue_vls_use_global*
32                                                      *b:ale_vue_vls_use_global*
33 vue_vls_use_global
34 g:ale_vue_vls_use_global
35   Type: |Number|
36   Default: `get(g:, 'ale_use_global_executables', 0)`
37
38   See |ale-integrations-local-executables|
39
40
41 ===============================================================================
42 volar                                                           *ale-vue-volar*
43
44   It is required to have typescript installed in your project as your dev
45   dependency: `npm i -D typescript`
46
47                                              *ale-options.vue_volar_executable*
48                                                    *g:ale_vue_volar_executable*
49                                                    *b:ale_vue_volar_executable*
50 vue_volar_executable
51 g:ale_vue_volar_executable
52   Type: |String|
53   Default: `'vue-language-server'`
54
55   See |ale-integrations-local-executables|
56
57                                              *ale-options.vue_volar_use_global*
58                                                    *g:ale_vue_volar_use_global*
59                                                    *b:ale_vue_volar_use_global*
60 vue_volar_use_global
61 g:ale_vue_volar_use_global
62   Type: |Number|
63   Default: `1`
64
65   See |ale-integrations-local-executables|
66
67                                            *ale-options.vue_volar_init_options*
68                                                  *g:ale_vue_volar_init_options*
69                                                  *b:ale_vue_volar_init_options*
70 vue_volar_init_options
71 g:ale_vue_volar_init_options
72   Type: |Dictionary|
73   Default: `{'typescript': 'tsdk': ''}`
74
75   This option can be configured to set the initialization options for volar.
76
77   ALE will automatically replace `tsdk` with local detected path to the
78   typescript library.
79
80
81 ===============================================================================
82   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: