ale/test/handler/test_unimport_handler.vader
Jon Parise 8b1ea33cc0
Add a unimport linter for Python files (#4058)
Unimport (https://github.com/hakancelik96/unimport/) is a linter,
formatter for finding and removing unused import statements.

This introduces linting support, although fixer support could come
later.
2022-02-08 15:54:25 +09:00

19 lines
366 B
Plaintext

Before:
runtime ale_linters/python/unimport.vim
After:
call ale#linter#Reset()
Execute(The unimport handler should handle import warnings):
AssertEqual
\ [
\ {
\ 'lnum': 9,
\ 'type': 'W',
\ 'text': 'unused: urllib.parse',
\ },
\ ],
\ ale_linters#python#unimport#Handle(1, [
\ 'urllib.parse at path/to/file.py:9',
\ ])