-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
56 lines (53 loc) · 1.83 KB
/
pyrightconfig.json
File metadata and controls
56 lines (53 loc) · 1.83 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"venv": ".env",
"venvPath": ".",
"pythonVersion": "3.14",
"include": ["ascetic_ddd"],
"exclude": [
"**/tests",
"**/_build",
"**/.env",
"ascetic_ddd/faker/infrastructure/dump/s3_dump.py",
"ascetic_ddd/faker/infrastructure/session/observers/rest/rest_statsd_observer.py",
"ascetic_ddd/session/tortoise_session.py",
"ascetic_ddd/seedwork/domain/values/geolocation_coordinates.py",
"ascetic_ddd/seedwork/domain/values/point.py",
"ascetic_ddd/utils/serializer.py",
"ascetic_ddd/specification/domain/jsonpath/examples"
],
"typeCheckingMode": "off",
"reportMissingImports": false,
"reportMissingTypeStubs": false,
"reportInvalidTypeVarUse": false,
"reportIncompatibleMethodOverride": false,
"reportRedeclaration": false,
"reportAbstractUsage": "error",
"reportOptionalMemberAccess": "error",
"reportOptionalSubscript": "error",
"reportOperatorIssue": "error",
"reportPossiblyUnboundVariable": "error",
"reportReturnType": "error",
"reportOptionalOperand": "error",
"reportOptionalCall": "error",
"reportIndexIssue": "error",
"reportAssignmentType": "error",
"reportIncompatibleVariableOverride": "error",
"reportUnsupportedDunderAll": "error",
"reportUnusedExpression": "error",
"reportUntypedBaseClass": "error",
"reportUntypedFunctionDecorator": "error",
"reportUntypedClassDecorator": "error",
"reportUnnecessaryCast": "error",
"reportUnnecessaryContains": "error",
"reportUnusedFunction": "error",
"reportCallIssue": "error",
"reportGeneralTypeIssues": "error",
"reportArgumentType": "error",
"reportAttributeAccessIssue": "error",
"reportPrivateUsage": "warning",
"reportUnusedClass": "warning",
"reportDuplicateImport": "warning",
"reportDeprecated": "warning",
"reportUnnecessaryIsInstance": "warning",
"reportUnnecessaryComparison": "warning"
}