diff options
author | w0rp <devw0rp@gmail.com> | 2017-07-18 23:57:33 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-07-18 23:57:33 +0100 |
commit | 235fc90e226ccc0430b9faa0cd3a226d9be6f31c (patch) | |
tree | 173aa89218f03254c5ccb6e80a5ee6139bd21132 /doc | |
parent | aa94d0902a557bc8d65b51a868cf1e122edd2306 (diff) | |
download | ale-235fc90e226ccc0430b9faa0cd3a226d9be6f31c.zip |
Fix #308 - Check Dart files with dartanalyzer
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-dart.txt | 36 | ||||
-rw-r--r-- | doc/ale.txt | 3 |
2 files changed, 39 insertions, 0 deletions
diff --git a/doc/ale-dart.txt b/doc/ale-dart.txt new file mode 100644 index 00000000..37ba6fa0 --- /dev/null +++ b/doc/ale-dart.txt @@ -0,0 +1,36 @@ +=============================================================================== +ALE Dart Integration *ale-dart-options* + + +=============================================================================== +dartanalyzer *ale-dart-dartanalyzer* + +Installation +------------------------------------------------------------------------------- + +Install Dart via whatever means. `dartanalyzer` will be included in the SDK. + +You can add the SDK to `$PATH`, as described here: +https://www.dartlang.org/tools/sdk + +If you have installed Dart on Linux, you can also try the following: > + " Set the executable path for dartanalyzer to the absolute path to it. + let g:ale_dart_dartanalyzer_executable = '/usr/lib/dart/bin/dartanalyzer' +< +... or similarly for wherever your Dart SDK lives. This should work without +having to modify `$PATH`. + + +Options +------------------------------------------------------------------------------- + +g:ale_dart_dartanalyzer_executable *g:ale_dart_dartanalyzer_executable* + *b:ale_dart_dartanalyzer_executable* + Type: |String| + Default: `'dartanalyzer'` + + This variable can be set to change the path to dartanalyzer. + + +=============================================================================== + vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: diff --git a/doc/ale.txt b/doc/ale.txt index be79cedf..360d5afe 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -31,6 +31,8 @@ CONTENTS *ale-contents* stylelint...........................|ale-css-stylelint| cmake.................................|ale-cmake-options| cmakelint...........................|ale-cmake-cmakelint| + dart..................................|ale-dart-options| + dartanalyzer........................|ale-dart-dartanalyzer| erlang................................|ale-erlang-options| erlc................................|ale-erlang-erlc| syntaxerl...........................|ale-erlang-syntaxerl| @@ -172,6 +174,7 @@ The following languages and tools are supported. * CSS: 'csslint', 'stylelint' * Cython (pyrex filetype): 'cython' * D: 'dmd' +* Dart: 'dartanalyzer' * Dockerfile: 'hadolint' * Elixir: 'credo', 'dogma' * Elm: 'elm-make' |