diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-11 00:31:42 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-11 00:31:42 +0100 |
commit | d5ae3201a4128c9e7b1042e9ea40b7f13cf72a10 (patch) | |
tree | 86ca55a467b86555aaed7e83e0094a5def357bd1 /autoload/ale.vim | |
parent | b1462ac66c10ed323c5148ecd8821c3a433ff403 (diff) | |
download | ale-d5ae3201a4128c9e7b1042e9ea40b7f13cf72a10.zip |
Ban !=# and !=? from the codebase
Diffstat (limited to 'autoload/ale.vim')
-rw-r--r-- | autoload/ale.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale.vim b/autoload/ale.vim index 6e16a8ee..766ed6fa 100644 --- a/autoload/ale.vim +++ b/autoload/ale.vim @@ -58,7 +58,7 @@ function! ale#Queue(delay, ...) abort endfunction function! s:ALEQueueImpl(delay, linting_flag, buffer) abort - if a:linting_flag !=# '' && a:linting_flag !=# 'lint_file' + if a:linting_flag isnot# '' && a:linting_flag isnot# 'lint_file' throw "linting_flag must be either '' or 'lint_file'" endif |