mirror of
https://github.com/Genshin-bots/gsuid_core.git
synced 2025-05-11 22:45:48 +08:00
29 lines
785 B
JSON
29 lines
785 B
JSON
{
|
|
"python.languageServer": "Pylance",
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
"cSpell.words": [
|
|
"enka",
|
|
"genshin",
|
|
"genshinuid"
|
|
],
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
}
|
|
},
|
|
"isort.args": [
|
|
"--profile",
|
|
"black"
|
|
],
|
|
"python.analysis.diagnosticMode": "workspace",
|
|
"python.formatting.provider": "black",
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.flake8CategorySeverity.W": "Warning",
|
|
"python.linting.flake8CategorySeverity.F": "Warning",
|
|
"python.linting.flake8CategorySeverity.E": "Warning",
|
|
"python.analysis.autoImportCompletions": true,
|
|
}
|