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

Squashed '.vim/bundle/ale/' content from commit 22185c4c
[etc/vim.git] / doc / ale-zig.txt
1 ===============================================================================
2 ALE Zig Integration                                           *ale-zig-options*
3                                                           *ale-integration-zig*
4
5 ===============================================================================
6 Integration Information
7
8   The following linters are supported for Zig:
9
10   * zlint (https://github.com/DonIsaac/zlint)
11   * zls (https://github.com/zigtools/zls)
12
13
14 ===============================================================================
15 zigfmt                                                         *ale-zig-zigfmt*
16
17                                             *ale-options.zig_zigfmt_executable*
18                                                   *g:ale_zig_zigfmt_executable*
19                                                   *b:ale_zig_zigfmt_executable*
20 zig_zigfmt_executable
21 g:ale_zig_zigfmt_executable
22   Type: |String|
23   Default: `'zig'`
24
25   The executable that will be run for the `zig fmt` fixer.
26
27
28 ===============================================================================
29 zlint                                                           *ale-zig-zlint*
30
31                                              *ale-options.zig_zlint_executable*
32                                                    *g:ale_zig_zlint_executable*
33                                                    *b:ale_zig_zlint_executable*
34 zig_zlint_executable
35 g:ale_zig_zlint_executable
36   Type: |String|
37   Default: `'zlint'`
38
39   This variable can be modified to change the executable path for `zlint`.
40
41
42 ===============================================================================
43 zls                                                               *ale-zig-zls*
44
45                                                *ale-options.zig_zls_executable*
46                                                      *g:ale_zig_zls_executable*
47                                                      *b:ale_zig_zls_executable*
48 zig_zls_executable
49 g:ale_zig_zls_executable
50   Type: |String|
51   Default: `'zls'`
52
53   This variable can be modified to change the executable path for `zls`.
54
55                                                    *ale-options.zig_zls_config*
56                                                          *g:ale_zig_zls_config*
57                                                          *b:ale_zig_zls_config*
58 zig_zls_config
59 g:ale_zig_zls_config
60   Type: |Dictionary|
61   Default: `{}`
62
63   WARNING: As of writing, zls does not support receiving configuration
64   from the client. This variable is a PLACEHOLDER until it does.
65
66   Dictionary with configuration settings for zls.
67
68
69 ===============================================================================
70   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: