diff options
author | Ryan <RyanSquared@users.noreply.github.com> | 2017-06-14 03:35:11 -0500 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2017-06-14 09:35:11 +0100 |
commit | e8cc40b13985e17320437debca0426a1129e0f54 (patch) | |
tree | 8905fe359bfd7185af55e56aded9e4c65a2da200 /doc | |
parent | ba83c476cde8bceef33bf959fa6d9d3334f5d2fc (diff) | |
download | ale-e8cc40b13985e17320437debca0426a1129e0f54.zip |
Add fusion-lint, documentation, and tests (#648)
* Add `fusion-lint` for first FusionScript linter
* Add documentation over `fusion-lint`
* Add tests for `fusion-lint` command callback
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-fuse.txt | 25 | ||||
-rw-r--r-- | doc/ale.txt | 3 |
2 files changed, 28 insertions, 0 deletions
diff --git a/doc/ale-fuse.txt b/doc/ale-fuse.txt new file mode 100644 index 00000000..2a84f4ec --- /dev/null +++ b/doc/ale-fuse.txt @@ -0,0 +1,25 @@ +=============================================================================== +ALE FusionScript Integration *ale-fuse-options* + + +------------------------------------------------------------------------------- +4.12. fusionlint *ale-fuse-fusionlint* + +g:ale_fusion_fusionlint_executable *g:ale_fuse_fusionlint_executable* + *b:ale_fuse_fusionlint_executable* + Type: |String| + Default: `'fusion-lint'` + + This variable can be changed to change the path to fusion-lint. + + +g:ale_fuse_fusionlint_options *g:ale_fuse_fusionlint_options* + *b:ale_fuse_fusionlint_options* + Type: |String| + Default: `''` + + This variable can be set to pass additional options to fusion-lint. + + +------------------------------------------------------------------------------- + vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: diff --git a/doc/ale.txt b/doc/ale.txt index 6edd3f74..a8244cdf 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -33,6 +33,8 @@ CONTENTS *ale-contents* erlc................................|ale-erlang-erlc| fortran...............................|ale-fortran-options| gcc.................................|ale-fortran-gcc| + fusionscript..........................ale-fuse-options + fusion-lint.........................ale-fuse-fusionlint go....................................|ale-go-options| gometalinter........................|ale-go-gometalinter| handlebars............................|ale-handlebars-options| @@ -151,6 +153,7 @@ The following languages and tools are supported. * Erlang: 'erlc' * Fortran: 'gcc' * Go: 'gofmt', 'go vet', 'golint', 'go build', 'gosimple', 'staticcheck' +* FusionScript: 'fusion-lint' * Haml: 'hamllint' * Handlebars: 'ember-template-lint' * Haskell: 'ghc', 'ghc-mod', 'hlint', 'hdevtools' |