-
Notifications
You must be signed in to change notification settings - Fork 1
/
compact.code-workspace
170 lines (170 loc) · 4.43 KB
/
compact.code-workspace
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"folders": [
{
"path": "."
}
],
"settings": {
// Controls which editor is shown at startup, if none is restored from the previous session. Select 'none' to start without an editor, 'welcomePage' to open the Welcome page (default), 'newUntitledFile' to open a new untitled file (only opening an empty workspace).
"workbench.startupEditor": "newUntitledFile",
// If set to true, the notifications for extension recommendations will stop showing up.
"extensions.ignoreRecommendations": false,
// Controls how the editor should render whitespace characters, possibilities are 'none', 'boundary', and 'all'. The 'boundary' option does not render single spaces between words.
"editor.renderWhitespace": "all",
// When enabled, insert a final new line at the end of the file when saving it.
"files.insertFinalNewline": true,
// ROS distro name to use (kinetic, jade, ...).
"ros.distro": "noetic",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/.hg/store/**": true,
"**/catkin_ws/build/**": true,
"**/catkin_ws/devel/**": true,
"**/catkin_ws/logs/**": true,
"**/catkin_ws/.catkin_tools/**": true,
"**/underlay_ws/build/**": true,
"**/underlay_ws/devel/**": true,
"**/underlay_ws/logs/**": true,
"**/underlay_ws/.catkin_tools/**": true
},
"files.associations": {
"*.script": "python",
"*.ipp": "cpp",
"future": "cpp",
"*.txt": "shellscript",
"cctype": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"atomic": "cpp",
"strstream": "cpp",
"*.tcc": "cpp",
"chrono": "cpp",
"codecvt": "cpp",
"condition_variable": "cpp",
"cstdint": "cpp",
"initializer_list": "cpp",
"iosfwd": "cpp",
"mutex": "cpp",
"ratio": "cpp",
"system_error": "cpp",
"thread": "cpp",
"typeindex": "cpp",
"array": "cpp",
"bitset": "cpp",
"deque": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"exception": "cpp",
"fstream": "cpp",
"iomanip": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"memory": "cpp",
"new": "cpp",
"optional": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"string_view": "cpp",
"cinttypes": "cpp",
"type_traits": "cpp",
"tuple": "cpp",
"typeinfo": "cpp",
"utility": "cpp",
"algorithm": "cpp",
"map": "cpp",
"memory_resource": "cpp",
"set": "cpp",
"string": "cpp",
"functional": "cpp",
"hash_map": "cpp",
"hash_set": "cpp",
"complex": "cpp",
"forward_list": "cpp",
"list": "cpp",
"unordered_set": "cpp",
"iterator": "cpp",
"numeric": "cpp",
"random": "cpp",
"regex": "cpp",
"slist": "cpp",
"cfenv": "cpp",
"valarray": "cpp",
"shared_mutex": "cpp",
"variant": "cpp",
"*.inc": "cpp",
"bit": "cpp",
"core": "cpp",
"numericaldiff": "cpp",
"any": "cpp"
},
"files.exclude": {
"**/__pycache__": true,
"**/.catkin_tools": true,
"**/*.pyc": true,
"**/build": true,
"**/devel": true,
"**/logs": true
},
"python.analysis.exclude": [
"./catkin_ws/devel/**"
],
"python.analysis.extraPaths": [
"./catkin_ws/src/osx_assembly_database/src",
"./catkin_ws/src/osx_robot_control/src",
"./catkin_ws/src/osx_cooking/src",
"./catkin_ws/src/osx_vision/src",
"./underlay_ws/src/downward/src",
"./underlay_ws/src/moveit/moveit_commander/src",
"./underlay_ws/src/ur_python_utilities/ur_control/src",
"./underlay_ws/src/ur_python_utilities/ur3e_rl/src",
"./underlay_ws/src/ur_python_utilities/ur3e_openai/src",
"./underlay_ws/src/ur_python_utilities/ur3_gazebo/src",
"./robosuite"
],
"cSpell.words": [
"commander",
"disect",
"loginfo",
"moveit",
"robosuite",
"rospy",
"tolist"
],
"python.analysis.autoImportCompletions": true,
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8",
"editor.formatOnSave": true
},
"3dpreview.showWireframe": true,
"autopep8.args": [
"--max-line-length",
"200",
"--experimental"
]
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-vscode.cpptools",
"ms-azuretools.vscode-docker",
"ms-iot.vscode-ros",
"streetsidesoftware.code-spell-checker",
"eamodio.gitlens",
"mhutchie.git-graph"
]
},
}