-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
29 lines (29 loc) · 961 Bytes
/
pyrightconfig.json
File metadata and controls
29 lines (29 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"pythonVersion": "3.8",
"include": ["nextstrain"],
"ignore": [
"nextstrain/cli/markdown.py",
"nextstrain/cli/rst/sphinx.py",
"/**/node_modules/pyright/dist/typeshed-fallback/",
"c:/**/node_modules/pyright/dist/typeshed-fallback/"
],
"reportMissingImports": false,
"reportMissingModuleSource": true,
"reportUnusedFunction": true,
"reportWildcardImportFromLibrary": true,
"reportUntypedFunctionDecorator": true,
"reportUntypedClassDecorator": true,
"reportUntypedBaseClass": true,
"reportUntypedNamedTuple": true,
"reportPrivateUsage": true,
"reportInvalidStringEscapeSequence": true,
"reportInvalidTypeVarUse": true,
"reportAssertAlwaysTrue": true,
"reportSelfClsParameterName": true,
"reportInvalidStubStatement": true,
"reportIncompleteStub": true,
"reportUnnecessaryCast": true,
"reportUnnecessaryTypeIgnoreComment": true,
"reportUnsupportedDunderAll": true,
"strictParameterNoneValue": false
}