-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyrightconfig.precommit.json
More file actions
31 lines (31 loc) · 972 Bytes
/
Copy pathpyrightconfig.precommit.json
File metadata and controls
31 lines (31 loc) · 972 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
30
31
{
"include": ["custom_components", "tests"],
"exclude": ["**/node_modules", "**/__pycache__"],
"extraPaths": ["."],
"stubPath": "typings",
"ignore": ["typings/pytest_homeassistant_custom_component/**"],
"typeCheckingMode": "strict",
"executionEnvironments": [
{
"root": "custom_components"
},
{
"root": "tests",
"reportMissingTypeStubs": "none",
"reportPrivateUsage": "none",
"reportUnknownArgumentType": "none",
"reportUnknownLambdaType": "none",
"reportUnknownMemberType": "none",
"reportUnknownParameterType": "none",
"reportUnknownVariableType": "none",
"reportMissingParameterType": "none",
"reportUnusedImport": "none",
"reportUnusedClass": "none",
"reportUnusedFunction": "none",
"reportUnusedVariable": "none",
"reportUnnecessaryCast": "error",
"reportUnnecessaryComparison": "error",
"reportUnnecessaryIsInstance": "error"
}
]
}