diff options
author | w0rp <w0rp@users.noreply.github.com> | 2016-10-22 14:35:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-22 14:35:13 +0100 |
commit | 89d8f2a0bc541af8d6c5aa33b806846e4efedcd2 (patch) | |
tree | 0a3627a8bdc4863d0fff96f91cc75459fbba588c /ale_linters/json/jsonlint.vim | |
parent | cd00a18c3a85080783c71abaeae87e4c599435e3 (diff) | |
parent | 99aebcafac22607273f06442b3613e11774d8444 (diff) | |
download | ale-89d8f2a0bc541af8d6c5aa33b806846e4efedcd2.zip |
Merge pull request #138 from neersighted/dotft
Add support for dot-seperate linters, improve linter tests
Diffstat (limited to 'ale_linters/json/jsonlint.vim')
-rw-r--r-- | ale_linters/json/jsonlint.vim | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ale_linters/json/jsonlint.vim b/ale_linters/json/jsonlint.vim index cfbe9c7d..ca9a06c4 100644 --- a/ale_linters/json/jsonlint.vim +++ b/ale_linters/json/jsonlint.vim @@ -1,11 +1,5 @@ " Author: KabbAmine <amine.kabb@gmail.com> -if exists('g:loaded_ale_linters_json_jsonlint') - finish -endif - -let g:loaded_ale_linters_json_jsonlint = 1 - function! ale_linters#json#jsonlint#Handle(buffer, lines) " Matches patterns like the following: " line 2, col 15, found: 'STRING' - expected: 'EOF', '}', ',', ']'. |