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 /ale_linters/rust/cargo.vim | |
parent | b1462ac66c10ed323c5148ecd8821c3a433ff403 (diff) | |
download | ale-d5ae3201a4128c9e7b1042e9ea40b7f13cf72a10.zip |
Ban !=# and !=? from the codebase
Diffstat (limited to 'ale_linters/rust/cargo.vim')
-rw-r--r-- | ale_linters/rust/cargo.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/rust/cargo.vim b/ale_linters/rust/cargo.vim index 32c09a58..f19061ad 100644 --- a/ale_linters/rust/cargo.vim +++ b/ale_linters/rust/cargo.vim @@ -4,7 +4,7 @@ let g:ale_rust_cargo_use_check = get(g:, 'ale_rust_cargo_use_check', 0) function! ale_linters#rust#cargo#GetCargoExecutable(bufnr) abort - if ale#path#FindNearestFile(a:bufnr, 'Cargo.toml') !=# '' + if ale#path#FindNearestFile(a:bufnr, 'Cargo.toml') isnot# '' return 'cargo' else " if there is no Cargo.toml file, we don't use cargo even if it exists, |