From 1d33d2cacff9816ce487f9000675851041c25901 Mon Sep 17 00:00:00 2001 From: yasuhiroki Date: Tue, 20 Mar 2018 08:57:09 +0900 Subject: Support textlint for plaintext without textlintrc --- ale_linters/text/textlint.vim | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ale_linters/text/textlint.vim (limited to 'ale_linters/text/textlint.vim') diff --git a/ale_linters/text/textlint.vim b/ale_linters/text/textlint.vim new file mode 100644 index 00000000..8fafdd7d --- /dev/null +++ b/ale_linters/text/textlint.vim @@ -0,0 +1,9 @@ +" Author: Yasuhiro Kiyota +" Description: textlint, a proofreading tool (https://textlint.github.io/) + +call ale#linter#Define('text', { +\ 'name': 'textlint', +\ 'executable_callback': 'ale#handlers#textlint#GetExecutable', +\ 'command_callback': 'ale#handlers#textlint#GetCommand', +\ 'callback': 'ale#handlers#textlint#HandleTextlintOutput', +\}) -- cgit v1.2.3