summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2019-01-27 15:55:13 +0000
committerGitHub <noreply@github.com>2019-01-27 15:55:13 +0000
commit08d3523962927d1360b87ac147a29a242c31e7b0 (patch)
treef1813128e1038339d4eed657ec6604fe92792297 /doc
parent3c38fdb1bb3625bcb222cfce16acd7db360ef413 (diff)
parentbd1e639681a9154315251c63cb704186ed08ce13 (diff)
downloadale-08d3523962927d1360b87ac147a29a242c31e7b0.zip
Merge pull request #2228 from Nomad145/ktlint
Add ktlint Fixer Support
Diffstat (limited to 'doc')
-rw-r--r--doc/ale-kotlin.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/ale-kotlin.txt b/doc/ale-kotlin.txt
index 9f9fd16e..4028531f 100644
--- a/doc/ale-kotlin.txt
+++ b/doc/ale-kotlin.txt
@@ -84,9 +84,17 @@ g:ale_kotlin_ktlint_rulesets *g:ale_kotlin_ktlint_rulesets*
This list should contain paths to ruleset jars and/or strings of maven
artifact triples. Example:
>
- let g:ale_kotlin_ktlint_rulesets = ['/path/to/custom-rulset.jar',
+ let g:ale_kotlin_ktlint_rulesets = ['/path/to/custom-ruleset.jar',
'com.ktlint.rulesets:mycustomrule:1.0.0']
+g:ale_kotlin_ktlint_options *g:ale_kotlin_ktlint_options*
+ Type: |String|
+ Default: `''`
+
+ Additional options to pass to ktlint for both linting and fixing. Example:
+ >
+ let g:ale_kotlin_ktlint_options = '--android'
+
===============================================================================
languageserver *ale-kotlin-languageserver*