summaryrefslogtreecommitdiff
path: root/doc/ale-dart.txt
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-07-18 23:57:33 +0100
committerw0rp <devw0rp@gmail.com>2017-07-18 23:57:33 +0100
commit235fc90e226ccc0430b9faa0cd3a226d9be6f31c (patch)
tree173aa89218f03254c5ccb6e80a5ee6139bd21132 /doc/ale-dart.txt
parentaa94d0902a557bc8d65b51a868cf1e122edd2306 (diff)
downloadale-235fc90e226ccc0430b9faa0cd3a226d9be6f31c.zip
Fix #308 - Check Dart files with dartanalyzer
Diffstat (limited to 'doc/ale-dart.txt')
-rw-r--r--doc/ale-dart.txt36
1 files changed, 36 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: