diff options
Diffstat (limited to 'ale_linters/php')
-rw-r--r-- | ale_linters/php/php.vim | 1 | ||||
-rw-r--r-- | ale_linters/php/phpcs.vim | 1 | ||||
-rw-r--r-- | ale_linters/php/phpmd.vim | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/ale_linters/php/php.vim b/ale_linters/php/php.vim index 6edc66b3..ebc21ea3 100644 --- a/ale_linters/php/php.vim +++ b/ale_linters/php/php.vim @@ -16,7 +16,6 @@ function! ale_linters#php#php#Handle(buffer, lines) abort continue endif - " vcol is needed to indicate that the column is a character. call add(l:output, { \ 'bufnr': a:buffer, \ 'lnum': l:match[3] + 0, diff --git a/ale_linters/php/phpcs.vim b/ale_linters/php/phpcs.vim index 2edd6ed5..73dd940f 100644 --- a/ale_linters/php/phpcs.vim +++ b/ale_linters/php/phpcs.vim @@ -29,7 +29,6 @@ function! ale_linters#php#phpcs#Handle(buffer, lines) abort let l:text = l:match[4] let l:type = l:match[3] - " vcol is Needed to indicate that the column is a character. call add(l:output, { \ 'bufnr': a:buffer, \ 'lnum': l:match[1] + 0, diff --git a/ale_linters/php/phpmd.vim b/ale_linters/php/phpmd.vim index e172a6a1..c8d1b79d 100644 --- a/ale_linters/php/phpmd.vim +++ b/ale_linters/php/phpmd.vim @@ -18,7 +18,6 @@ function! ale_linters#php#phpmd#Handle(buffer, lines) abort continue endif - " vcol is Needed to indicate that the column is a character. call add(l:output, { \ 'bufnr': a:buffer, \ 'lnum': l:match[1] + 0, |