mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-22 14:21:33 +03:00
91bf2f1701
I'm tired of creating new files and ending up with mixed indentation.
15 lines
539 B
JSON
15 lines
539 B
JSON
{
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 4,
|
|
"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
|
|
} |