settings.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "clangd.enable": false,
  3. "C_Cpp.intelliSenseEngine": "default",
  4. "C_Cpp.codeAnalysis.clangTidy.enabled": true,
  5. "c-cpp-flylint.enable": true,
  6. "c-cpp-flylint.cppcheck.severityLevels": {
  7. "error": "Error",
  8. "warning": "Warning",
  9. "style": "Information",
  10. "performance": "Information",
  11. "portability": "Information",
  12. "information": "Information"
  13. },
  14. "c-cpp-flylint.cppcheck.extraArgs": [
  15. // "--suppress=constParameterPointer",
  16. // "--suppress=constParameterCallback",
  17. "--check-level=exhaustive",
  18. // "--suppress=variableScope",
  19. // "--suppress=unreadVariable",
  20. // "--suppress=constVariablePointer",
  21. // "--suppress=constParameter",
  22. ],
  23. "files.associations": {
  24. "*.c": "c",
  25. "errno.h": "c",
  26. "algorithm": "c",
  27. "functional": "c",
  28. "random": "c",
  29. "core_mqtt_serializer.h": "c",
  30. "array": "c",
  31. "istream": "c",
  32. "ostream": "c",
  33. "tuple": "c",
  34. "type_traits": "c",
  35. "utility": "c",
  36. "pthread.h": "c",
  37. "ryanmqtttest.h": "c",
  38. "core_mqtt_config_defaults.h": "c",
  39. "ryanmqttplatform.h": "c",
  40. "ryanmqttclient.h": "c",
  41. "ryanmqttlog.h": "c",
  42. "valloc.h": "c",
  43. "platformsystem.h": "c",
  44. "ryanmqttpublic.h": "c",
  45. "ryanmqttlist.h": "c",
  46. "platformnetwork.h": "c",
  47. "inttypes.h": "c",
  48. "memory": "c",
  49. "stdbool.h": "c",
  50. "ryanmqttutil.h": "c",
  51. "cstdlib": "c",
  52. "stdatomic.h": "c",
  53. "atomic": "c",
  54. "cstdint": "c"
  55. },
  56. }