| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "Lua.codeLens.enable": false,
- "Lua.hint.enable": false,
- "Lua.completion.enable": false,
- "Lua.format.enable": false,
- "Lua.hover.enable": false,
- "Lua.diagnostics.enable": false,
- "Lua.semantic.enable": false,
- "Lua.addonManager.enable": false,
- "Lua.signatureHelp.enable": false,
- "clangd.enable": false,
- "clangd.arguments": [],
- "liveServer.settings.file": "${workspaceFolder}/coverage/**",
- "liveServer.settings.ignoreFiles": [
- "**", // 第一步:先忽略所有文件(简单粗暴)
- "!coverage/**" // 第二步:用感叹号 ! 把 coverage 目录“救”回来
- ],
- // "C_Cpp.intelliSenseEngine": "disabled",
- // "C_Cpp.errorSquiggles": "disabled", // 关闭微软的波浪线
- // "C_Cpp.autocomplete": "disabled", // 关闭微软的自动补全
- "C_Cpp.default.compileCommands": "${workspaceFolder}/.vscode/compile_commands.json",
- "C_Cpp.codeAnalysis.clangTidy.enabled": false,
- "C_Cpp.codeAnalysis.clangTidy.args": [
- // "--extra-arg=-ferror-limit=1"
- // "--extra-arg=-m32",
- "--extra-arg=--target=arm-none-eabi-gcc"
- ],
- "c-cpp-flylint.enable": false,
- "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",
- "--suppress=unusedStructMember",
- ],
- "makefile.configureOnOpen": false,
- "liveServer.settings.port": 5501,
- "files.associations": {
- "*.rules": "makefile",
- "*.vars": "makefile",
- "optional": "cpp",
- "istream": "cpp",
- "ostream": "cpp",
- "system_error": "cpp",
- "array": "cpp",
- "functional": "cpp",
- "tuple": "cpp",
- "type_traits": "cpp",
- "utility": "cpp",
- "string": "cpp",
- "deque": "cpp",
- "vector": "cpp",
- "iterator": "cpp",
- "string_view": "cpp",
- "string.h": "c",
- "testbase.h": "c",
- "ryanjson.h": "c",
- "chrono": "c",
- "random": "c",
- "limits": "c",
- "algorithm": "c",
- "time.h": "c"
- }
- }
|