We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d47dc5a commit bb1e1caCopy full SHA for bb1e1ca
.vscode/settings.default.json
@@ -70,13 +70,14 @@
70
"editor.defaultFormatter": "ms-python.black-formatter",
71
"editor.codeActionsOnSave": {
72
// Let Ruff lint fixes handle imports
73
- "source.organizeImports": "never"
+ "source.organizeImports": "never",
74
+ "source.unusedImports": "never"
75
}
76
},
77
// python.analysis is Pylance (pyright) configurations
78
"python.analysis.fixAll": [
- "source.unusedImports"
79
// Explicitly omiting "source.convertImportFormat", some stubs use relative imports
80
+ // Explicitly omiting "source.unusedImports", Let Ruff lint fixes handle imports
81
],
82
"python.analysis.typeshedPaths": [
83
"${workspaceFolder}"
0 commit comments