16 lines
493 B
JSON
16 lines
493 B
JSON
{
|
|
"python.linting.enabled": true,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.analysis.useLibraryCodeForTypes": true,
|
|
"python.analysis.typeCheckingMode": "strict",
|
|
"python.analysis.stubPath": "typestubs",
|
|
"python.formatting.provider": "black",
|
|
"editor.formatOnPaste": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnSaveMode": "file",
|
|
"editor.formatOnType": true,
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
".*env": true
|
|
}
|
|
} |