mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-08 05:24:46 +08:00
#540 Fix shell escaping pretty much everywhere
This commit is contained in:
@@ -20,7 +20,7 @@ Execute(The mypy callbacks should return the correct default values):
|
||||
\ 'mypy',
|
||||
\ ale_linters#python#mypy#GetExecutable(bufnr(''))
|
||||
AssertEqual
|
||||
\ 'cd ' . g:dir . ' && mypy --show-column-numbers %s',
|
||||
\ 'cd ''' . g:dir . ''' && ''mypy'' --show-column-numbers %s',
|
||||
\ ale_linters#python#mypy#GetCommand(bufnr(''))
|
||||
|
||||
Execute(The mypy executable should be configurable, and escaped properly):
|
||||
@@ -30,14 +30,14 @@ Execute(The mypy executable should be configurable, and escaped properly):
|
||||
\ 'executable with spaces',
|
||||
\ ale_linters#python#mypy#GetExecutable(bufnr(''))
|
||||
AssertEqual
|
||||
\ 'cd ' . g:dir . ' && executable\ with\ spaces --show-column-numbers %s',
|
||||
\ 'cd ''' . g:dir . ''' && ''executable with spaces'' --show-column-numbers %s',
|
||||
\ ale_linters#python#mypy#GetCommand(bufnr(''))
|
||||
|
||||
Execute(The mypy command callback should let you set options):
|
||||
let g:ale_python_mypy_options = '--some-option'
|
||||
|
||||
AssertEqual
|
||||
\ 'cd ' . g:dir . ' && mypy --show-column-numbers --some-option %s',
|
||||
\ 'cd ''' . g:dir . ''' && ''mypy'' --show-column-numbers --some-option %s',
|
||||
\ ale_linters#python#mypy#GetCommand(bufnr(''))
|
||||
|
||||
Execute(The mypy command should switch directories to the detected project root):
|
||||
@@ -47,7 +47,7 @@ Execute(The mypy command should switch directories to the detected project root)
|
||||
\ 'mypy',
|
||||
\ ale_linters#python#mypy#GetExecutable(bufnr(''))
|
||||
AssertEqual
|
||||
\ 'cd ' . g:dir . '/python_paths/no_virtualenv/subdir && mypy --show-column-numbers %s',
|
||||
\ 'cd ''' . g:dir . '/python_paths/no_virtualenv/subdir'' && ''mypy'' --show-column-numbers %s',
|
||||
\ ale_linters#python#mypy#GetCommand(bufnr(''))
|
||||
|
||||
Execute(The mypy callbacks should detect virtualenv directories and switch to the project root):
|
||||
@@ -57,8 +57,8 @@ Execute(The mypy callbacks should detect virtualenv directories and switch to th
|
||||
\ g:dir . '/python_paths/with_virtualenv/env/bin/mypy',
|
||||
\ ale_linters#python#mypy#GetExecutable(bufnr(''))
|
||||
AssertEqual
|
||||
\ 'cd ' . g:dir . '/python_paths/with_virtualenv/subdir && '
|
||||
\ . g:dir . '/python_paths/with_virtualenv/env/bin/mypy --show-column-numbers %s',
|
||||
\ 'cd ''' . g:dir . '/python_paths/with_virtualenv/subdir'' && '''
|
||||
\ . g:dir . '/python_paths/with_virtualenv/env/bin/mypy'' --show-column-numbers %s',
|
||||
\ ale_linters#python#mypy#GetCommand(bufnr(''))
|
||||
|
||||
Execute(You should able able to use the global mypy instead):
|
||||
@@ -69,5 +69,5 @@ Execute(You should able able to use the global mypy instead):
|
||||
\ 'mypy',
|
||||
\ ale_linters#python#mypy#GetExecutable(bufnr(''))
|
||||
AssertEqual
|
||||
\ 'cd ' . g:dir . '/python_paths/with_virtualenv/subdir && mypy --show-column-numbers %s',
|
||||
\ 'cd ''' . g:dir . '/python_paths/with_virtualenv/subdir'' && ''mypy'' --show-column-numbers %s',
|
||||
\ ale_linters#python#mypy#GetCommand(bufnr(''))
|
||||
|
||||
Reference in New Issue
Block a user