mirror of
https://github.com/Genshin-bots/gsuid_core.git
synced 2025-05-11 22:45:48 +08:00
27 lines
628 B
JSON
27 lines
628 B
JSON
{
|
|
"python.languageServer": "None",
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
}
|
|
},
|
|
"python.autoComplete.extraPaths": [
|
|
"${workspaceFolder}/gsuid_core"
|
|
],
|
|
"flake8.args": [
|
|
"--max-line-length=120"
|
|
],
|
|
"isort.args": [
|
|
"--profile",
|
|
"black"
|
|
],
|
|
"basedpyright.analysis.typeCheckingMode": "basic",
|
|
"basedpyright.analysis.extraPaths": [
|
|
"${workspaceFolder}/gsuid_core"
|
|
],
|
|
"python.analysis.typeCheckingMode": "off"
|
|
}
|