summaryrefslogtreecommitdiff
path: root/ale_linters/python/mypy.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/python/mypy.vim')
-rw-r--r--ale_linters/python/mypy.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/ale_linters/python/mypy.vim b/ale_linters/python/mypy.vim
index 94dfae7d..1e35d929 100644
--- a/ale_linters/python/mypy.vim
+++ b/ale_linters/python/mypy.vim
@@ -43,12 +43,14 @@ function! ale_linters#python#mypy#GetCommand(buffer) abort
\ ? ' run mypy'
\ : ''
+ let l:options = ale#Var(a:buffer, 'python_mypy_options')
+
" We have to always switch to an explicit directory for a command so
" we can know with certainty the base path for the 'filename' keys below.
return ale#path#CdString(l:dir)
\ . ale#Escape(l:executable) . l:exec_args
- \ . ' --show-column-numbers '
- \ . ale#Var(a:buffer, 'python_mypy_options')
+ \ . (len(l:options) ? (' ' . l:options) : '')
+ \ . ' --show-column-numbers'
\ . ' --shadow-file %s %t %s'
endfunction