c118996746
- SwiftUI macOS app with C++17 code analysis engine (ObjC++ bridge) - Agentic AI loop: LLM plans → tool calls → execution → feedback loop - 15 agent tools: file ops, terminal, git, xcode build, code intel - 7 persistent terminal tools with background session management - Chat sidebar with agent step rendering and auto-apply - NVIDIA NIM API integration (Llama 3.3 70B default) - OpenAI tool_calls format with prompt-based fallback - Code editor with syntax highlighting and multi-tab support - File tree, console view, terminal view - Git integration and workspace management
42 lines
775 B
YAML
42 lines
775 B
YAML
---
|
|
BasedOnStyle: LLVM
|
|
IndentWidth: 4
|
|
TabWidth: 4
|
|
UseTab: Never
|
|
ColumnLimit: 120
|
|
Language: Cpp
|
|
Standard: c++17
|
|
|
|
# Braces
|
|
BreakBeforeBraces: Attach
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AllowShortIfStatementsOnASingleLine: Never
|
|
AllowShortLoopsOnASingleLine: false
|
|
|
|
# Alignment
|
|
AlignConsecutiveAssignments: true
|
|
AlignConsecutiveDeclarations: false
|
|
AlignTrailingComments: true
|
|
|
|
# Includes
|
|
SortIncludes: true
|
|
IncludeBlocks: Preserve
|
|
|
|
# Spacing
|
|
SpaceBeforeParens: ControlStatements
|
|
SpaceAfterCStyleCast: false
|
|
SpacesInParentheses: false
|
|
SpacesInSquareBrackets: false
|
|
|
|
# Pointers & References
|
|
PointerAlignment: Left
|
|
ReferenceAlignment: Left
|
|
|
|
# Namespaces
|
|
NamespaceIndentation: None
|
|
|
|
# ObjC
|
|
ObjCBlockIndentWidth: 4
|
|
ObjCSpaceAfterProperty: true
|
|
ObjCSpaceBeforeProtocolList: true
|