godofmilker/bune icon
public
Published on 5/17/2025
C++

Rules

Build & Development Commands

  • Generate: cmake -S . -B ./Project
  • Build: cmake --build ./Project

Code Style & Guidelines

  • Use camelCase for local variables & parameters, PascalCase for everything else.
  • Here is my .clang-format:
BasedOnStyle: Microsoft
IndentWidth: 4
TabWidth: 4
UseTab: Always
AllowShortFunctionsOnASingleLine: Empty
BreakBeforeBraces: Allman
ColumnLimit: 120
IndentCaseLabels: false
NamespaceIndentation: None
PointerAlignment: Left
SortIncludes: false