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.
1 ===============================================================================
2 ALE Hack Integration *ale-hack-options*
5 HHAST is disabled by default, as it executes code in the project root.
7 Currently linters must be enabled globally. HHAST can be enabled in ftplugin
10 let b:ale_linters = ['hack', 'hhast']
13 require("ale").setup.buffer({linters = {"hack", "hhast"}})
16 ===============================================================================
19 *ale-options.hack_hack_executable*
20 *g:ale_hack_hack_executable*
21 *b:ale_hack_hack_executable*
23 g:ale_hack_hack_executable
25 Default: `'hh_client'`
27 This variable can be set to use a specific executable to interact with the
31 ===============================================================================
32 hackfmt *ale-hack-hackfmt*
34 *ale-options.hack_hackfmt_options*
35 *g:ale_hack_hackfmt_options*
36 *b:ale_hack_hackfmt_options*
38 g:ale_hack_hackfmt_options
42 This variable can be set to pass additional options to the hackfmt fixer.
45 ===============================================================================
46 hhast *ale-hack-hhast*
48 *ale-options.hack_hhast_executable*
49 *g:ale_hack_hhast_executable*
50 *b:ale_hack_hhast_executable*
52 g:ale_hack_hhast_executable
54 Default: `'vendor/bin/hhast-lint'`
56 This variable can be set to use a specific executable to interact with the
60 ===============================================================================
61 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: