Make the tslint file match the style in the rest of the codebase
This commit is contained in:
parent
a4220b99a6
commit
3f5cb55e73
@ -8,11 +8,11 @@ let g:ale_typescript_tslint_config_path =
|
|||||||
\ get(g:, 'ale_typescript_tslint_config_path', '')
|
\ get(g:, 'ale_typescript_tslint_config_path', '')
|
||||||
|
|
||||||
function! ale_linters#typescript#tslint#GetExecutable(buffer) abort
|
function! ale_linters#typescript#tslint#GetExecutable(buffer) abort
|
||||||
return ale#util#ResolveLocalPath(
|
return ale#util#ResolveLocalPath(
|
||||||
\ a:buffer,
|
\ a:buffer,
|
||||||
\ 'node_modules/.bin/tslint',
|
\ 'node_modules/.bin/tslint',
|
||||||
\ g:ale_typescript_tslint_executable
|
\ g:ale_typescript_tslint_executable
|
||||||
\)
|
\)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! ale_linters#typescript#tslint#Handle(buffer, lines) abort
|
function! ale_linters#typescript#tslint#Handle(buffer, lines) abort
|
||||||
@ -51,19 +51,19 @@ function! ale_linters#typescript#tslint#Handle(buffer, lines) abort
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! ale_linters#typescript#tslint#BuildLintCommand(buffer) abort
|
function! ale_linters#typescript#tslint#BuildLintCommand(buffer) abort
|
||||||
let g:ale_typescript_tslint_config_path =
|
let g:ale_typescript_tslint_config_path =
|
||||||
\ empty(g:ale_typescript_tslint_config_path) ?
|
\ empty(g:ale_typescript_tslint_config_path)
|
||||||
\ ale#util#FindNearestFile(a:buffer, 'tslint.json')
|
\ ? ale#util#FindNearestFile(a:buffer, 'tslint.json')
|
||||||
\ : g:ale_typescript_tslint_config_path
|
\ : g:ale_typescript_tslint_config_path
|
||||||
|
|
||||||
let l:tslint_options =
|
let l:tslint_options =
|
||||||
\ empty(g:ale_typescript_tslint_config_path) ?
|
\ empty(g:ale_typescript_tslint_config_path)
|
||||||
\ ''
|
\ ? ''
|
||||||
\ : '-c ' . fnameescape(g:ale_typescript_tslint_config_path)
|
\ : '-c ' . fnameescape(g:ale_typescript_tslint_config_path)
|
||||||
|
|
||||||
return ale_linters#typescript#tslint#GetExecutable(a:buffer)
|
return ale_linters#typescript#tslint#GetExecutable(a:buffer)
|
||||||
\ . ' ' . l:tslint_options
|
\ . ' ' . l:tslint_options
|
||||||
\ . ' %t'
|
\ . ' %t'
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
call ale#linter#Define('typescript', {
|
call ale#linter#Define('typescript', {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user