diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-08 08:39:13 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-08 08:39:13 +0100 |
commit | a535d07f2897d36dad3b22d28c1c6cd16b7e385e (patch) | |
tree | d32ef7e2261be0a1542fb39f1978b90e6f59a520 /ale_linters/python | |
parent | 5010ddc28fdced941925563bbc55f9219dfa4267 (diff) | |
download | ale-a535d07f2897d36dad3b22d28c1c6cd16b7e385e.zip |
Ban use of ==# or ==? in the codebase, and prefer is# or is? instead
Diffstat (limited to 'ale_linters/python')
-rw-r--r-- | ale_linters/python/flake8.vim | 8 | ||||
-rw-r--r-- | ale_linters/python/pylint.vim | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim index bf7b3027..982a098e 100644 --- a/ale_linters/python/flake8.vim +++ b/ale_linters/python/flake8.vim @@ -115,7 +115,7 @@ function! ale_linters#python#flake8#Handle(buffer, lines) abort for l:match in ale#util#GetMatches(a:lines, l:pattern) let l:code = l:match[3] - if (l:code ==# 'W291' || l:code ==# 'W293') + if (l:code is# 'W291' || l:code is# 'W293') \ && !ale#Var(a:buffer, 'warn_about_trailing_whitespace') " Skip warnings for trailing whitespace if the option is off. continue @@ -128,12 +128,12 @@ function! ale_linters#python#flake8#Handle(buffer, lines) abort \ 'type': 'W', \} - if l:code[:0] ==# 'F' || l:code ==# 'E999' + if l:code[:0] is# 'F' || l:code is# 'E999' let l:item.type = 'E' - elseif l:code[:0] ==# 'E' + elseif l:code[:0] is# 'E' let l:item.type = 'E' let l:item.sub_type = 'style' - elseif l:code[:0] ==# 'W' + elseif l:code[:0] is# 'W' let l:item.sub_type = 'style' endif diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index 6f95776b..befc51a5 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -31,13 +31,13 @@ function! ale_linters#python#pylint#Handle(buffer, lines) abort "let l:failed = append(0, l:match) let l:code = l:match[3] - if (l:code ==# 'C0303') + if (l:code is# 'C0303') \ && !ale#Var(a:buffer, 'warn_about_trailing_whitespace') " Skip warnings for trailing whitespace if the option is off. continue endif - if l:code ==# 'I0011' + if l:code is# 'I0011' " Skip 'Locally disabling' message continue endif @@ -46,7 +46,7 @@ function! ale_linters#python#pylint#Handle(buffer, lines) abort \ 'lnum': l:match[1] + 0, \ 'col': l:match[2] + 1, \ 'text': l:code . ': ' . l:match[5] . ' (' . l:match[4] . ')', - \ 'type': l:code[:0] ==# 'E' ? 'E' : 'W', + \ 'type': l:code[:0] is# 'E' ? 'E' : 'W', \}) endfor |