| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "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": true,
- "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
- }
|