-
Notifications
You must be signed in to change notification settings - Fork 128
/
pyrightconfig.json
30 lines (26 loc) · 1011 Bytes
/
pyrightconfig.json
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
30
{
"pythonVersion": "3.8",
"include": ["augur/"],
// These are rules that are enabled by default and currently have violations.
// TODO: go through these exceptions and determine if they should be kept or
// removed and violations addressed.
// TODO: consider aligning this with the same file in nextstrain/cli:
// <https://github.com/nextstrain/cli/blob/-/pyrightconfig.json>
"reportArgumentType": false,
"reportAttributeAccessIssue": false,
"reportCallIssue": false,
"reportGeneralTypeIssues": false,
"reportIncompatibleMethodOverride": false,
"reportMissingImports": false,
"reportMissingModuleSource": false,
"reportOperatorIssue": false,
"reportOptionalIterable": false,
"reportOptionalMemberAccess": false,
"reportOptionalOperand": false,
"reportOptionalSubscript": false,
"reportPossiblyUnboundVariable": false,
"reportPrivateImportUsage": false,
"reportSelfClsParameterName": false,
"reportUndefinedVariable": false,
"reportUnusedExpression": false,
}