textual-paint/.vscode/settings.json
Isaiah Odhner 0edd171233 Clean up imports
I had kept these around because several of these I'll want to use,
and the auto-import feature wasn't working, but I've since found a fix
for that (in 453111269e).
I'm also adding rich here to fix auto-imports from rich.
2023-05-22 00:22:36 -04:00

13 lines
481 B
JSON

{
"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},
{"name": "rich", "depth": 5},
],
"css.validate": false
}