settings.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "C_Cpp_Runner.msvcBatchPath": "",
  3. "C_Cpp_Runner.cCompilerPath": "gcc",
  4. "C_Cpp_Runner.cppCompilerPath": "g++",
  5. "C_Cpp_Runner.debuggerPath": "gdb",
  6. "C_Cpp_Runner.cStandard": "",
  7. "C_Cpp_Runner.cppStandard": "",
  8. "C_Cpp_Runner.useMsvc": false,
  9. "C_Cpp_Runner.warnings": [
  10. "-Wall",
  11. "-Wextra",
  12. "-Wpedantic",
  13. "-Wshadow",
  14. "-Wformat=2",
  15. "-Wcast-align",
  16. "-Wconversion",
  17. "-Wsign-conversion",
  18. "-Wnull-dereference"
  19. ],
  20. "C_Cpp_Runner.msvcWarnings": [
  21. "/W4",
  22. "/permissive-",
  23. "/w14242",
  24. "/w14287",
  25. "/w14296",
  26. "/w14311",
  27. "/w14826",
  28. "/w44062",
  29. "/w44242",
  30. "/w14905",
  31. "/w14906",
  32. "/w14263",
  33. "/w44265",
  34. "/w14928"
  35. ],
  36. "C_Cpp_Runner.enableWarnings": true,
  37. "C_Cpp_Runner.warningsAsError": false,
  38. "C_Cpp_Runner.compilerArgs": [],
  39. "C_Cpp_Runner.linkerArgs": [],
  40. "C_Cpp_Runner.includePaths": [],
  41. "C_Cpp_Runner.includeSearch": [
  42. "*",
  43. "**/*"
  44. ],
  45. "C_Cpp_Runner.excludeSearch": [
  46. "**/build",
  47. "**/build/**",
  48. "**/.*",
  49. "**/.*/**",
  50. "**/.vscode",
  51. "**/.vscode/**"
  52. ],
  53. "C_Cpp_Runner.useAddressSanitizer": false,
  54. "C_Cpp_Runner.useUndefinedSanitizer": false,
  55. "C_Cpp_Runner.useLeakSanitizer": false,
  56. "C_Cpp_Runner.showCompilationTime": false,
  57. "C_Cpp_Runner.useLinkTimeOptimization": false,
  58. "C_Cpp_Runner.msvcSecureNoWarnings": false,
  59. "files.associations": {
  60. "math.h": "c",
  61. "my_header.h": "c"
  62. }
  63. }