File size: 1,018 Bytes
4604daf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | {
"editor.formatOnSave": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.useLibraryCodeForTypes": true,
"python.languageServer": "Pylance",
"ruff.nativeServer": "on",
"python.analysis.typeCheckingMode": "standard",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.tabSize": 4,
"editor.detectIndentation": false,
"editor.renderWhitespace": "all",
"editor.rulers": [
120
],
"workbench.colorTheme": "Default Dark Modern",
"files.exclude": {
"**/__pycache__": true,
"**/.venv": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.vscode": false
},
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
}
},
"search.exclude": {
"**/__pycache__": true,
"**/.venv": true,
"**/.mypy_cache": true,
"**/.ruff_cache": true,
"**/.pytest_cache": true
}
}
|