mirror of https://github.com/astral-sh/ruff
[ty] Add `from <module> im<CURSOR>` completion evaluation task
Ideally this would have been added as part of #21291, but I forgot.
This commit is contained in:
parent
43297d3455
commit
ec48a47a88
|
|
@ -10,6 +10,7 @@ import-deprioritizes-type_check_only,main.py,1,1
|
||||||
import-deprioritizes-type_check_only,main.py,2,1
|
import-deprioritizes-type_check_only,main.py,2,1
|
||||||
import-deprioritizes-type_check_only,main.py,3,2
|
import-deprioritizes-type_check_only,main.py,3,2
|
||||||
import-deprioritizes-type_check_only,main.py,4,3
|
import-deprioritizes-type_check_only,main.py,4,3
|
||||||
|
import-keyword-completion,main.py,0,1
|
||||||
internal-typeshed-hidden,main.py,0,5
|
internal-typeshed-hidden,main.py,0,5
|
||||||
none-completion,main.py,0,11
|
none-completion,main.py,0,11
|
||||||
numpy-array,main.py,0,
|
numpy-array,main.py,0,
|
||||||
|
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
[settings]
|
||||||
|
auto-import = false
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
from collections im<CURSOR: import>
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
[project]
|
||||||
|
name = "test"
|
||||||
|
version = "0.1.0"
|
||||||
|
requires-python = ">=3.13"
|
||||||
|
dependencies = []
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
version = 1
|
||||||
|
revision = 3
|
||||||
|
requires-python = ">=3.13"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "test"
|
||||||
|
version = "0.1.0"
|
||||||
|
source = { virtual = "." }
|
||||||
Loading…
Reference in New Issue