mirror of
https://github.com/1j01/textual-paint.git
synced 2025-01-03 04:16:48 +03:00
VS Code: fix auto-imports for textual modules
This commit is contained in:
parent
b4f958623d
commit
453111269e
9
.vscode/settings.json
vendored
9
.vscode/settings.json
vendored
@ -1,3 +1,12 @@
|
||||
{
|
||||
"python.analysis.packageIndexDepths": [
|
||||
// The default depth is 1 (top-level only),
|
||||
// which doesn't let auto-imports work for Textual,
|
||||
// i.e. the Quick Fix for missing names, and
|
||||
// maybe an auto-complete feature that I don't use.
|
||||
// (2 might be sufficient.)
|
||||
// https://github.com/Textualize/textual/issues/2104
|
||||
{"name": "textual", "depth": 5}
|
||||
],
|
||||
"css.validate": false
|
||||
}
|
Loading…
Reference in New Issue
Block a user