23 lines
551 B
JSON
23 lines
551 B
JSON
{
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true,
|
|
"editor.formatOnSave": true,
|
|
"python.languageServer": "Pylance",
|
|
"python.analysis.autoImportCompletions": true,
|
|
"ruff.organizeImports": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
}
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/node_modules": true,
|
|
"**/__pycache__": true,
|
|
"*.egg-info": true,
|
|
".mypy_cache": true
|
|
}
|
|
}
|