| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "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.watcherExclude": {
- "**/test/fuzzer/corpus/**": true,
- "./docs": true,
- "./build": true,
- "./.xmake": true,
- },
- "files.exclude": {
- "**/test/fuzzer/corpus/**": true,
- "./docs": true,
- "./build": true,
- "./.xmake": true,
- },
- "files.associations": {
- "*.c": "c",
- "inttypes.h": "c",
- "float.h": "c",
- "stdlib.h": "c",
- "limits.h": "c",
- "stdio.h": "c",
- "stdint.h": "c",
- "ryanjsontest.h": "c",
- "dirent.h": "c",
- "valloc.h": "c",
- "initializer_list": "c",
- "array": "c",
- "string_view": "c",
- "utility": "c",
- "math.h": "c",
- "compare": "c",
- "type_traits": "c",
- "cjson.h": "c",
- "ryanjson.h": "c",
- "string.h": "c",
- "stdarg.h": "c",
- "cstdlib": "c",
- "ryanjsonconfig.h": "c"
- },
- }
|