diff options
author | w0rp <devw0rp@gmail.com> | 2017-07-07 00:10:30 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-07-07 00:10:30 +0100 |
commit | 8315c0e3377921435af06a3182bdc0f1f0f222fc (patch) | |
tree | b951412a91c66c6fc914849c2309dda2b7befc9c /doc | |
parent | 854066e8499344a6461fef8fd0ee4b3f8eaebeeb (diff) | |
download | ale-8315c0e3377921435af06a3182bdc0f1f0f222fc.zip |
Make the executable for gometalinter configurable
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-go.txt | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/doc/ale-go.txt b/doc/ale-go.txt index e8c8914e..fa743570 100644 --- a/doc/ale-go.txt +++ b/doc/ale-go.txt @@ -1,5 +1,5 @@ =============================================================================== -ALE Go Integration *ale-go-options* +ALE Go Integration *ale-go-options* ------------------------------------------------------------------------------- @@ -21,20 +21,28 @@ while ensuring it doesn't run any linters known to be slow or resource intensive. ------------------------------------------------------------------------------- -gometalinter *ale-go-gometalinter* +gometalinter *ale-go-gometalinter* -g:ale_go_gometalinter_options *g:ale_go_gometalinter_options* - *b:ale_go_gometalinter_options* +g:ale_go_gometalinter_executable *g:ale_go_gometalinter_executable* + *b:ale_go_gometalinter_executable* + Type: |String| + Default: `'gometalinter'` + + The executable that will be run for gometalinter. + + +g:ale_go_gometalinter_options *g:ale_go_gometalinter_options* + *b:ale_go_gometalinter_options* Type: |String| Default: `''` This variable can be changed to alter the command-line arguments to the gometalinter invocation. -Since `gometalinter` runs a number of linters that can consume a lot of -resources it's recommended to set this option to a value of `--fast` if you -use `gometalinter` as one of the linters in |g:ale_linters|. This disables a -number of linters known to be slow or consume a lot of resources. + Since `gometalinter` runs a number of linters that can consume a lot of + resources it's recommended to set this option to a value of `--fast` if you + use `gometalinter` as one of the linters in |g:ale_linters|. This disables a + number of linters known to be slow or consume a lot of resources. ------------------------------------------------------------------------------- |