summaryrefslogtreecommitdiff
path: root/ale_linters/haskell/hlint.vim
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2016-10-22 14:35:13 +0100
committerGitHub <noreply@github.com>2016-10-22 14:35:13 +0100
commit89d8f2a0bc541af8d6c5aa33b806846e4efedcd2 (patch)
tree0a3627a8bdc4863d0fff96f91cc75459fbba588c /ale_linters/haskell/hlint.vim
parentcd00a18c3a85080783c71abaeae87e4c599435e3 (diff)
parent99aebcafac22607273f06442b3613e11774d8444 (diff)
downloadale-89d8f2a0bc541af8d6c5aa33b806846e4efedcd2.zip
Merge pull request #138 from neersighted/dotft
Add support for dot-seperate linters, improve linter tests
Diffstat (limited to 'ale_linters/haskell/hlint.vim')
-rw-r--r--ale_linters/haskell/hlint.vim6
1 files changed, 0 insertions, 6 deletions
diff --git a/ale_linters/haskell/hlint.vim b/ale_linters/haskell/hlint.vim
index a12f75f1..f698d5b4 100644
--- a/ale_linters/haskell/hlint.vim
+++ b/ale_linters/haskell/hlint.vim
@@ -1,12 +1,6 @@
" Author: jparoz <jesse.paroz@gmail.com>
" Description: hlint for Haskell files
-if exists('g:loaded_ale_linters_haskell_hlint')
- finish
-endif
-
-let g:loaded_ale_linters_haskell_hlint = 1
-
function! ale_linters#haskell#hlint#Handle(buffer, lines)
let l:errors = json_decode(join(a:lines, ''))