summaryrefslogtreecommitdiff
path: root/ale_linters/python
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-01-15 13:20:23 +0000
committerw0rp <devw0rp@gmail.com>2017-01-15 13:20:23 +0000
commit41686980fdcc4649a5d70513352c9fc62ec0b2ef (patch)
treef0c1c11467f0af14e16fff38b095ae301637194c /ale_linters/python
parent35bdd6f478493b3fcad6a21b19884cdfb7fff3ac (diff)
downloadale-41686980fdcc4649a5d70513352c9fc62ec0b2ef.zip
Document the mypy options, and fix spacing issues, largely in the documentation
Diffstat (limited to 'ale_linters/python')
-rw-r--r--ale_linters/python/mypy.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/python/mypy.vim b/ale_linters/python/mypy.vim
index 8ca3e637..fd54f428 100644
--- a/ale_linters/python/mypy.vim
+++ b/ale_linters/python/mypy.vim
@@ -1,12 +1,12 @@
" Author: Keith Smiley <k@keith.so>
" Description: mypy support for optional python typechecking
-let g:ale_python_mypy_args = get(g:, 'ale_python_mypy_args', '')
+let g:ale_python_mypy_args = get(g:, 'ale_python_mypy_options', '')
function! g:ale_linters#python#mypy#GetCommand(buffer) abort
return g:ale#util#stdin_wrapper
- \ . ' .py mypy --show-column-numbers '
- \ . g:ale_python_mypy_args
+ \ . ' .py mypy --show-column-numbers '
+ \ . g:ale_python_mypy_options
endfunction
call g:ale#linter#Define('python', {