zephyr_vnd7050aj/.vscode/settings.json

90 lines
4.2 KiB
JSON

{
"C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json",
"C_Cpp.default.cppStandard": "c++17",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.intelliSenseMode": "linux-gcc-x64",
"C_Cpp.clang_format_style": "file",
"C_Cpp.clang_format_fallbackStyle": "none",
"C_Cpp.clang_format_path": "",
"C_Cpp.vcFormat.indent.braces": false,
"C_Cpp.vcFormat.indent.multiLineRelativeToOpeningBrace": false,
"C_Cpp.vcFormat.indent.withinParentheses": "indent",
"C_Cpp.vcFormat.indent.preserveWithinParentheses": false,
"C_Cpp.vcFormat.indent.caseLabels": false,
"C_Cpp.vcFormat.indent.caseContents": true,
"C_Cpp.vcFormat.indent.caseContentsWhenBlock": false,
"C_Cpp.vcFormat.indent.lambdaBracesWhenParameter": true,
"C_Cpp.vcFormat.indent.gotoLabels": "leftmostColumn",
"C_Cpp.vcFormat.indent.preprocessor": "leftmostColumn",
"C_Cpp.vcFormat.indent.accessSpecifiers": false,
"C_Cpp.vcFormat.indent.namespaceContents": true,
"C_Cpp.vcFormat.newLine.beforeOpenBrace.namespace": "newLine",
"C_Cpp.vcFormat.newLine.beforeOpenBrace.type": "newLine",
"C_Cpp.vcFormat.newLine.beforeOpenBrace.function": "newLine",
"C_Cpp.vcFormat.newLine.beforeOpenBrace.block": "newLine",
"C_Cpp.vcFormat.newLine.beforeOpenBrace.lambda": "newLine",
"C_Cpp.vcFormat.newLine.beforeElse": false,
"C_Cpp.vcFormat.newLine.beforeCatch": true,
"C_Cpp.vcFormat.newLine.beforeWhileInDoWhile": false,
"C_Cpp.vcFormat.space.beforeFunctionOpenParenthesis": "remove",
"C_Cpp.vcFormat.space.withinParameterListParentheses": false,
"C_Cpp.vcFormat.space.betweenEmptyParameterListParentheses": false,
"C_Cpp.vcFormat.space.afterKeywordsInControlFlowStatements": true,
"C_Cpp.vcFormat.space.withinControlFlowStatementParentheses": false,
"C_Cpp.vcFormat.space.beforeLambdaOpenParenthesis": false,
"C_Cpp.vcFormat.space.withinCastParentheses": false,
"C_Cpp.vcFormat.space.afterCastCloseParenthesis": false,
"C_Cpp.vcFormat.space.withinExpressionParentheses": false,
"C_Cpp.vcFormat.space.beforeBlockOpenBrace": true,
"C_Cpp.vcFormat.space.betweenEmptyBraces": false,
"C_Cpp.vcFormat.space.beforeInitializerListOpenBrace": false,
"C_Cpp.vcFormat.space.withinInitializerListBraces": true,
"C_Cpp.vcFormat.space.preserveInInitializerList": true,
"C_Cpp.vcFormat.space.beforeOpenSquareBracket": false,
"C_Cpp.vcFormat.space.withinSquareBrackets": false,
"C_Cpp.vcFormat.space.beforeEmptySquareBrackets": false,
"C_Cpp.vcFormat.space.betweenEmptySquareBrackets": false,
"C_Cpp.vcFormat.space.groupSquareBrackets": true,
"C_Cpp.vcFormat.space.withinLambdaBrackets": false,
"C_Cpp.vcFormat.space.betweenEmptyLambdaBrackets": false,
"C_Cpp.vcFormat.space.beforeComma": false,
"C_Cpp.vcFormat.space.afterComma": true,
"C_Cpp.vcFormat.space.removeAroundMemberOperators": true,
"C_Cpp.vcFormat.space.beforeInheritanceColon": true,
"C_Cpp.vcFormat.space.beforeConstructorColon": true,
"C_Cpp.vcFormat.space.removeBeforeSemicolon": true,
"C_Cpp.vcFormat.space.insertAfterSemicolon": true,
"C_Cpp.vcFormat.space.removeAroundUnaryOperator": true,
"C_Cpp.vcFormat.space.aroundBinaryOperator": "insert",
"C_Cpp.vcFormat.space.aroundAssignmentOperator": "insert",
"C_Cpp.vcFormat.space.pointerReferenceAlignment": "right",
"C_Cpp.vcFormat.space.aroundTernaryOperator": "insert",
"C_Cpp.vcFormat.wrap.preserveBlocks": "oneLiners",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [100],
"editor.tabSize": 8,
"editor.insertSpaces": false,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"[c]": {
"editor.defaultFormatter": "ms-vscode.cpptools",
"editor.formatOnSave": true,
"editor.tabSize": 8,
"editor.insertSpaces": false
},
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools",
"editor.formatOnSave": true,
"editor.tabSize": 8,
"editor.insertSpaces": false
},
"[h]": {
"editor.defaultFormatter": "ms-vscode.cpptools",
"editor.formatOnSave": true,
"editor.tabSize": 8,
"editor.insertSpaces": false
}
}