forked from open-dynamic-robot-initiative/robot_fingers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 823 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
32
33
34
35
36
37
38
39
40
[tool.black]
line-length = 79
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.mypy]
exclude = "doc/"
[[tool.mypy.overrides]]
# list all modules for which no type hints are available
module = [
"ament_index_python.*",
"cv2",
"matplotlib.*",
"pandas",
"pinocchio",
"plotext",
"progressbar",
"rclpy.*",
"scipy.*",
"setuptools",
"std_msgs.*",
"std_srvs.*",
# our packages
"robot_interfaces",
"trifinger_cameras.*",
"trifinger_simulation.*",
"trifinger_object_tracking.*",
# pybind11 packages
"robot_fingers.pybullet_drivers",
"robot_fingers.py_real_finger",
"robot_fingers.py_trifinger",
"robot_fingers.py_one_joint",
"robot_fingers.py_two_joint",
"robot_fingers.py_solo_eight",
]
ignore_missing_imports = true