| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "clangd.enable": false,
- "C_Cpp.intelliSenseEngine": "default",
- "C_Cpp.codeAnalysis.clangTidy.enabled": true,
- "c-cpp-flylint.enable": true,
- "c-cpp-flylint.cppcheck.severityLevels": {
- "error": "Error",
- "warning": "Warning",
- "style": "Information",
- "performance": "Information",
- "portability": "Information",
- "information": "Information"
- },
- "c-cpp-flylint.cppcheck.extraArgs": [
- // "--suppress=constParameterPointer",
- // "--suppress=constParameterCallback",
- "--check-level=exhaustive",
- // "--suppress=variableScope",
- // "--suppress=unreadVariable",
- // "--suppress=constVariablePointer",
- // "--suppress=constParameter",
- ],
- "files.associations": {
- "*.c": "c",
- "errno.h": "c",
- "algorithm": "c",
- "functional": "c",
- "random": "c",
- "core_mqtt_serializer.h": "c",
- "array": "c",
- "istream": "c",
- "ostream": "c",
- "tuple": "c",
- "type_traits": "c",
- "utility": "c",
- "pthread.h": "c",
- "ryanmqtttest.h": "c",
- "core_mqtt_config_defaults.h": "c",
- "ryanmqttplatform.h": "c",
- "ryanmqttclient.h": "c",
- "ryanmqttlog.h": "c",
- "valloc.h": "c",
- "platformsystem.h": "c",
- "ryanmqttpublic.h": "c",
- "ryanmqttlist.h": "c",
- "platformnetwork.h": "c",
- "inttypes.h": "c",
- "memory": "c",
- "stdbool.h": "c",
- "ryanmqttutil.h": "c",
- "cstdlib": "c",
- "stdatomic.h": "c",
- "atomic": "c",
- "cstdint": "c"
- },
- }
|