This repository has been archived on 2023-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
errsy/.vscode/settings.json

14 lines
350 B
JSON
Raw Normal View History

2023-05-28 18:25:34 +02:00
{
2023-05-28 18:47:41 +02:00
"python.analysis.typeCheckingMode": "basic",
"editor.rulers": [88],
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
2023-05-28 19:16:13 +02:00
"python.formatting.provider": "black",
"editor.codeActionsOnSave": {
"source.fixAll": false,
"source.organizeImports": true
2023-05-29 10:46:26 +02:00
},
"editor.tabSize": 4
2023-05-28 18:25:34 +02:00
}