We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8a81d8 commit 3a397dcCopy full SHA for 3a397dc
.vscode/settings.json
@@ -4,5 +4,6 @@
4
"tests"
5
],
6
"python.testing.unittestEnabled": false,
7
- "python.testing.pytestEnabled": true
+ "python.testing.pytestEnabled": true,
8
+ "python.analysis.typeEvaluation.enableReachabilityAnalysis": true
9
}
pyrightconfig.json
@@ -0,0 +1,13 @@
1
+{
2
+ "reportUnboundVariable": "error",
3
+ "reportPossiblyUnboundVariable": "error",
+ "reportUnusedVariable": "warning",
+ "reportUnusedParameter": "warning",
+ "strictListInference": true,
+ "strictDictionaryInference": true,
+ "strictSetInference": true,
+ "strictParameterNoneValue": true,
10
+ "enableTypeIgnoreComments": true,
11
+ "reportImportCycles": true,
12
+ "reportUnusedImport": true
13
+}
0 commit comments