2017-08-25 11:46:56 +00:00
|
|
|
Before:
|
2017-11-28 10:08:34 +00:00
|
|
|
Save g:ale_warn_about_trailing_blank_lines
|
|
|
|
|
|
|
|
let g:ale_warn_about_trailing_blank_lines = 1
|
|
|
|
|
2017-08-25 11:46:56 +00:00
|
|
|
runtime ale_linters/python/pycodestyle.vim
|
|
|
|
|
|
|
|
After:
|
2017-11-28 10:08:34 +00:00
|
|
|
Restore
|
|
|
|
|
|
|
|
unlet! b:ale_warn_about_trailing_blank_lines
|
|
|
|
|
2017-08-25 11:46:56 +00:00
|
|
|
call ale#linter#Reset()
|
|
|
|
silent file something_else.py
|
|
|
|
|
|
|
|
Execute(The pycodestyle handler should parse output):
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ {
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'lnum': 8,
|
|
|
|
\ 'col': 3,
|
|
|
|
\ 'type': 'E',
|
|
|
|
\ 'text': 'SyntaxError: invalid syntax',
|
|
|
|
\ 'code': 'E999',
|
|
|
|
\ },
|
|
|
|
\ {
|
2017-08-25 11:46:56 +00:00
|
|
|
\ 'lnum': 69,
|
|
|
|
\ 'col': 11,
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'text': 'multiple imports on one line',
|
|
|
|
\ 'code': 'E401',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ 'type': 'E',
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'sub_type': 'style',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 77,
|
|
|
|
\ 'col': 1,
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'text': 'expected 2 blank lines, found 1',
|
|
|
|
\ 'code': 'E302',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ 'type': 'E',
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'sub_type': 'style',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 88,
|
|
|
|
\ 'col': 5,
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'text': 'expected 1 blank line, found 0',
|
|
|
|
\ 'code': 'E301',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ 'type': 'E',
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'sub_type': 'style',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 222,
|
|
|
|
\ 'col': 34,
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'text': 'deprecated form of raising exception',
|
|
|
|
\ 'code': 'W602',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ 'type': 'W',
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'sub_type': 'style',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 544,
|
|
|
|
\ 'col': 21,
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'text': '.has_key() is deprecated, use ''in''',
|
|
|
|
\ 'code': 'W601',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ 'type': 'W',
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'sub_type': 'style',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ },
|
|
|
|
\ ],
|
|
|
|
\ ale_linters#python#pycodestyle#Handle(bufnr(''), [
|
2017-11-15 17:47:24 +00:00
|
|
|
\ 'stdin:8:3: E999 SyntaxError: invalid syntax',
|
2017-08-25 11:46:56 +00:00
|
|
|
\ 'stdin:69:11: E401 multiple imports on one line',
|
|
|
|
\ 'stdin:77:1: E302 expected 2 blank lines, found 1',
|
|
|
|
\ 'stdin:88:5: E301 expected 1 blank line, found 0',
|
|
|
|
\ 'stdin:222:34: W602 deprecated form of raising exception',
|
|
|
|
\ 'example.py:544:21: W601 .has_key() is deprecated, use ''in''',
|
|
|
|
\ ])
|
2017-11-28 10:08:34 +00:00
|
|
|
|
|
|
|
Execute(Warnings about trailing blank lines should be reported by default):
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 6,
|
|
|
|
\ 'col': 1,
|
|
|
|
\ 'code': 'W391',
|
|
|
|
\ 'type': 'W',
|
|
|
|
\ 'sub_type': 'style',
|
|
|
|
\ 'text': 'blank line at end of file',
|
|
|
|
\ },
|
|
|
|
\ ],
|
|
|
|
\ ale_linters#python#pycodestyle#Handle(bufnr(''), [
|
|
|
|
\ 'foo.py:6:1: W391 blank line at end of file',
|
|
|
|
\ ])
|
|
|
|
|
|
|
|
Execute(Disabling trailing blank line warnings should work):
|
|
|
|
let b:ale_warn_about_trailing_blank_lines = 0
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ ],
|
|
|
|
\ ale_linters#python#pycodestyle#Handle(bufnr(''), [
|
|
|
|
\ 'foo.py:6:1: W391 blank line at end of file',
|
|
|
|
\ ])
|