11{
2- "python.pythonPath" : " python " ,
2+ // static analysis
33 "python.languageServer" : " Pylance" ,
4- // "python.testing.unittestEnabled": false,
5- // "python.testing.nosetestsEnabled": false,
6- // "python.testing.pytestEnabled": true,
7- "pythonTestExplorer.testFramework" : " pytest" ,
8- "python.formatting.provider" : " black" ,
9- "python.sortImports.path" : " isort" ,
10- "python.sortImports.args" : [
11- " --profile=black" ,
12- ],
13- // "[python]": {
14- // "editor.codeActionsOnSave": {
15- // "source.organizeImports": true
16- // }
17- // }
184 "python.analysis.typeCheckingMode" : " strict" ,
195 "python.analysis.autoImportCompletions" : false ,
206 "python.analysis.diagnosticSeverityOverrides" : {
217 "reportPrivateUsage" : " information" ,
228 "reportUntypedNamedTuple" : " information" ,
239 },
10+
11+ // formating
12+ "python.formatting.provider" : " black" ,
13+
14+ // sorting
15+ "python.sortImports.path" : " isort" ,
16+ "python.sortImports.args" : [
17+ " --profile=black" ,
18+ ],
19+
20+ // tests
21+ "python.testing.pytestArgs" : [
22+ " tests"
23+ ],
24+ "python.testing.unittestEnabled" : false ,
25+ "python.testing.pytestEnabled" : true ,
2426}
0 commit comments