summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-03-29 00:28:01 +0100
committerw0rp <devw0rp@gmail.com>2017-03-29 00:28:01 +0100
commit3f5cb55e737ab314b62bc21ff41fd6b052d92068 (patch)
tree15abc2ed131c60871f583f1773aa2150cc88929b /ale_linters
parenta4220b99a6f7a9184545e71f70bc280648dde586 (diff)
downloadale-3f5cb55e737ab314b62bc21ff41fd6b052d92068.zip
Make the tslint file match the style in the rest of the codebase
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/typescript/tslint.vim32
1 files changed, 16 insertions, 16 deletions
diff --git a/ale_linters/typescript/tslint.vim b/ale_linters/typescript/tslint.vim
index 8eeb98d7..2e8a1d4f 100644
--- a/ale_linters/typescript/tslint.vim
+++ b/ale_linters/typescript/tslint.vim
@@ -8,11 +8,11 @@ let g:ale_typescript_tslint_config_path =
\ get(g:, 'ale_typescript_tslint_config_path', '')
function! ale_linters#typescript#tslint#GetExecutable(buffer) abort
- return ale#util#ResolveLocalPath(
- \ a:buffer,
- \ 'node_modules/.bin/tslint',
- \ g:ale_typescript_tslint_executable
- \)
+ return ale#util#ResolveLocalPath(
+ \ a:buffer,
+ \ 'node_modules/.bin/tslint',
+ \ g:ale_typescript_tslint_executable
+ \)
endfunction
function! ale_linters#typescript#tslint#Handle(buffer, lines) abort
@@ -51,19 +51,19 @@ function! ale_linters#typescript#tslint#Handle(buffer, lines) abort
endfunction
function! ale_linters#typescript#tslint#BuildLintCommand(buffer) abort
- let g:ale_typescript_tslint_config_path =
- \ empty(g:ale_typescript_tslint_config_path) ?
- \ ale#util#FindNearestFile(a:buffer, 'tslint.json')
- \ : g:ale_typescript_tslint_config_path
+ let g:ale_typescript_tslint_config_path =
+ \ empty(g:ale_typescript_tslint_config_path)
+ \ ? ale#util#FindNearestFile(a:buffer, 'tslint.json')
+ \ : g:ale_typescript_tslint_config_path
- let l:tslint_options =
- \ empty(g:ale_typescript_tslint_config_path) ?
- \ ''
- \ : '-c ' . fnameescape(g:ale_typescript_tslint_config_path)
+ let l:tslint_options =
+ \ empty(g:ale_typescript_tslint_config_path)
+ \ ? ''
+ \ : '-c ' . fnameescape(g:ale_typescript_tslint_config_path)
- return ale_linters#typescript#tslint#GetExecutable(a:buffer)
- \ . ' ' . l:tslint_options
- \ . ' %t'
+ return ale_linters#typescript#tslint#GetExecutable(a:buffer)
+ \ . ' ' . l:tslint_options
+ \ . ' %t'
endfunction
call ale#linter#Define('typescript', {