-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpyrightconfig.json
45 lines (45 loc) · 1.04 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"pythonversion": "3.10",
"typeCheckingMode": "basic",
"exclude": [
"**/__pycache__",
"**/.*",
"extra/nbstripout.py",
"tests/test-install",
"tests/validate-ocr.py",
],
"ignore": [
"stbt_control.py",
"stbt_run.py",
"stbt_virtual_stb.py",
"_stbt/core.py",
"_stbt/cv2_compat.py",
"_stbt/diff.py",
"_stbt/grid.py",
"_stbt/gst_hacks.py",
"_stbt/gst_utils.py",
"_stbt/imgproc_cache.py",
"_stbt/keyboard.py",
"_stbt/libstbt.py",
"_stbt/mask.py",
"_stbt/motion.py",
"_stbt/ocr.py",
"_stbt/power.py",
"_stbt/precondition.py",
"_stbt/pylint_plugin.py",
"_stbt/sqdiff.py",
"_stbt/stbt_run.py",
"_stbt/transition.py",
"_stbt/types.py",
"stbt_core/__init__.py",
"tests/test_core.py",
"tests/test_diff.py",
"tests/test_frameobject.py",
"tests/test_grid.py",
"tests/test_keyboard.py",
"tests/test_mask.py",
"tests/test_match.py",
"tests/test_ocr.py",
"tests/test_stbt_debug.py",
"tests/test_transition.py",
]}