summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorHideaki Tokida <tokihide@gmail.com>2018-03-19 02:28:26 +0900
committerw0rp <w0rp@users.noreply.github.com>2018-03-18 17:28:26 +0000
commit1b1e53ef6101e98ff34044a127758513dbf662e4 (patch)
tree246b1739a7961809b827974a4487c938c5c46228 /ale_linters
parentc112ee9dff2a44d733556dc9440f6d1c15f41f15 (diff)
downloadale-1b1e53ef6101e98ff34044a127758513dbf662e4.zip
add textlint support for markdown (#1383)
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/markdown/textlint.vim23
1 files changed, 23 insertions, 0 deletions
diff --git a/ale_linters/markdown/textlint.vim b/ale_linters/markdown/textlint.vim
new file mode 100644
index 00000000..4899fb53
--- /dev/null
+++ b/ale_linters/markdown/textlint.vim
@@ -0,0 +1,23 @@
+" Author: tokida https://rouger.info
+" Description: textlint, a proofreading tool (https://textlint.github.io/)
+
+function! ale_linters#markdown#textlint#GetCommand(buffer) abort
+ let l:cmd_path = ale#path#FindNearestFile(a:buffer, '.textlintrc')
+
+ if !empty(l:cmd_path)
+ return 'textlint'
+ \ . ' -c '
+ \ . l:cmd_path
+ \ . ' -f json %t'
+ endif
+
+ return ''
+endfunction
+
+
+call ale#linter#Define('markdown', {
+\ 'name': 'textlint',
+\ 'executable': 'textlint',
+\ 'command_callback': 'ale_linters#markdown#textlint#GetCommand',
+\ 'callback': 'ale#handlers#textlint#HandleTextlintOutput',
+\})