1+ {
2+ "files.autoSave" : " afterDelay" ,
3+ "files.autoSaveDelay" : 1000 ,
4+ "python.defaultInterpreterPath" : " .venv/bin/python" ,
5+ "python.terminal.activateEnvironment" : true ,
6+ "python.testing.pytestArgs" : [
7+ " -s" ,
8+ " tests"
9+ ],
10+ "python.testing.unittestEnabled" : false ,
11+ "python.testing.pytestEnabled" : true ,
12+ "python.analysis.autoImportCompletions" : true ,
13+ "python.analysis.typeCheckingMode" : " strict" ,
14+ "python.analysis.diagnosticSeverityOverrides" : {
15+ "reportMissingTypeStubs" : " none"
16+ },
17+ "python.analysis.indexing" : true ,
18+ "python.analysis.completeFunctionParens" : true ,
19+ "python.analysis.inlayHints.variableTypes" : true ,
20+ "python.analysis.inlayHints.functionReturnTypes" : true ,
21+ "editor.rulers" : [80 ],
22+ "editor.codeActionsOnSave" : {
23+ "source.organizeImports" : " always" ,
24+ "source.unusedImports" : " always" ,
25+ },
26+ "[python]" : {
27+ "editor.defaultFormatter" : " ms-python.autopep8" ,
28+ "editor.formatOnSave" : true
29+ },
30+ "autopep8.args" : [
31+ " --max-line-length=80" ,
32+ " --experimental"
33+ ]
34+ }
0 commit comments