diff options
author | David Alexander <david.alexander@salesforce.com> | 2017-04-10 16:44:14 -0400 |
---|---|---|
committer | David Alexander <david.alexander@salesforce.com> | 2017-04-10 16:44:14 -0400 |
commit | 593dbe7556fca14187c55c1b64b920124497bfa6 (patch) | |
tree | 8480f7583d18688b441c127f76d3a1c65b7b5891 /ale_linters | |
parent | b9bb4adacda521ac98b3ed656cd328ae36835e40 (diff) | |
download | ale-593dbe7556fca14187c55c1b64b920124497bfa6.zip |
Typo correcting 3.0.7 -> 0.3.7 for `vint --no-color`
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/vim/vint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/vim/vint.vim b/ale_linters/vim/vint.vim index fb177b92..4b2c5445 100644 --- a/ale_linters/vim/vint.vim +++ b/ale_linters/vim/vint.vim @@ -7,7 +7,7 @@ let g:ale_vim_vint_show_style_issues = let s:warning_flag = g:ale_vim_vint_show_style_issues ? '-s' : '-w' let s:vint_version = ale#semver#Parse(system('vint --version')) -let s:has_no_color_support = ale#semver#GreaterOrEqual(s:vint_version, [3, 0, 7]) +let s:has_no_color_support = ale#semver#GreaterOrEqual(s:vint_version, [0, 3, 7]) let s:enable_neovim = has('nvim') ? ' --enable-neovim ' : '' let s:format = '-f "{file_path}:{line_number}:{column_number}: {severity}: {description} (see {reference})"' |