You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
848 B
30 lines
848 B
{
|
|
// 指定第三方库的代码提示和自动补全
|
|
"python.autoComplete.extraPaths": [
|
|
"./UmiOCR-data/site-packages",
|
|
"./UmiOCR-data/py_src/imports",
|
|
],
|
|
"python.analysis.extraPaths": [
|
|
"./UmiOCR-data/site-packages",
|
|
"./UmiOCR-data/py_src/imports",
|
|
],
|
|
"editor.suggest.showWords": true,
|
|
"cmake.configureOnOpen": false,
|
|
// 隐藏文件和目录
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.runtime": true,
|
|
"**/*.dll": true,
|
|
"**/site-packages": true,
|
|
// "**/**.exe": true
|
|
},
|
|
// 指定文件类型
|
|
"files.associations": {
|
|
"*.ts": "xml"
|
|
},
|
|
"svg.preview.background": "transparent",
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
},
|
|
"python.formatting.provider": "none"
|
|
}
|