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.
This commit is contained in:
Jon Parise
2022-02-07 22:54:25 -08:00
committed by GitHub
parent 2428d4d81d
commit 8b1ea33cc0
9 changed files with 219 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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',
\ ])