Merge pull request #1955 from eborden/eborden/mising_hlint_executable_var

Remove test vars that cover bug
This commit is contained in:
w0rp 2018-09-29 11:25:37 +01:00 committed by GitHub
commit 04ed87c882
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,9 @@
" Author: jparoz <jesse.paroz@gmail.com>
" Description: hlint for Haskell files
call ale#Set('haskell_hlint_executable', 'hlint')
call ale#Set('haskell_hlint_options', get(g:, 'hlint_options', ''))
function! ale_linters#haskell#hlint#Handle(buffer, lines) abort
let l:output = []

View File

@ -1,9 +1,6 @@
Before:
call ale#assert#SetUpLinterTest('haskell', 'hlint')
let g:ale_haskell_hlint_executable = 'hlint'
let g:ale_haskell_hlint_options = ''
let b:base_opts = '--color=never --json -'
After: