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
| { "editor.tabSize": 8, "editor.rulers": [ 100 ], "files.associations": { "*.repos": "yaml", "*.world": "xml", "*.xacro": "xml", "chrono": "cpp", "cctype": "cpp", "clocale": "cpp", "cmath": "cpp", "csignal": "cpp", "cstdarg": "cpp", "cstddef": "cpp", "cstdio": "cpp", "cstdlib": "cpp", "cstring": "cpp", "ctime": "cpp", "cwchar": "cpp", "cwctype": "cpp", "any": "cpp", "array": "cpp", "atomic": "cpp", "strstream": "cpp", "bit": "cpp", "*.tcc": "cpp", "bitset": "cpp", "codecvt": "cpp", "complex": "cpp", "condition_variable": "cpp", "cstdint": "cpp", "deque": "cpp", "forward_list": "cpp", "list": "cpp", "map": "cpp", "set": "cpp", "unordered_map": "cpp", "vector": "cpp", "exception": "cpp", "algorithm": "cpp", "functional": "cpp", "iterator": "cpp", "memory": "cpp", "memory_resource": "cpp", "numeric": "cpp", "optional": "cpp", "random": "cpp", "ratio": "cpp", "string": "cpp", "string_view": "cpp", "system_error": "cpp", "tuple": "cpp", "type_traits": "cpp", "utility": "cpp", "fstream": "cpp", "future": "cpp", "initializer_list": "cpp", "iomanip": "cpp", "iosfwd": "cpp", "iostream": "cpp", "istream": "cpp", "limits": "cpp", "mutex": "cpp", "new": "cpp", "ostream": "cpp", "shared_mutex": "cpp", "sstream": "cpp", "stdexcept": "cpp", "streambuf": "cpp", "thread": "cpp", "cfenv": "cpp", "cinttypes": "cpp", "typeindex": "cpp", "typeinfo": "cpp", "valarray": "cpp", "variant": "cpp" }, "python.autoComplete.extraPaths": [ "/opt/ros/foxy/lib/python3.8/site-packages/" ], "python.envFile": "${workspaceFolder}/.env", "python.formatting.autopep8Path": "/usr/bin/autopep8", "python.formatting.autopep8Args": [ "--max-line-length=100" ], "C_Cpp.default.intelliSenseMode": "clang-x64", "C_Cpp.formatting": "Disabled", "uncrustify.useReplaceOption": true, "uncrustify.configPath.linux": "/opt/ros/foxy/lib/python3.8/site-packages/ament_uncrustify/configuration/ament_code_style.cfg", "cSpell.words": [ "RTPS", "athackst", "autopep", "cmake", "cppcheck", "cpplint", "deque", "devcontainer", "ints", "noqa", "pytest", "rclcpp", "rclpy", "repos", "rosdistro", "rosidl", "uncrustify", "xmllint" ], "search.exclude": { "**/node_modules": true, "**/bower_components": true, "**/*.code-search": true, "**/build": true, "**/install": true, "**/log": true }, "python.analysis.extraPaths": [ "/opt/ros/foxy/lib/python3.8/site-packages/" ], "cSpell.allowCompoundWords": true, "cSpell.ignorePaths": [ "**/package-lock.json", "**/node_modules/**", "**/vscode-extension/**", "**/.git/objects/**", ".vscode", ".vscode-insiders", ".devcontainer/devcontainer.json" ], "ros.distro": "foxy", "cmake.sourceDirectory": "/home/asensing/workspace/Asensing_LiDAR_ROS/aglidar_sdk" }
|