diff --git a/.vscode/settings.json b/.vscode/settings.json index 6c5db5f..b7568be 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,7 +2,6 @@ "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "editor.tabSize": 4, - "python.analysis.typeCheckingMode": "strict", "python.formatting.provider": "black", "editor.formatOnSave": true, "files.exclude": { diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 0000000..42962c1 --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,8 @@ +{ + "typeCheckingMode": "basic", + "strict": [ + "htmltools/", + "examples/", + ], + "reportImportCycles": false +}