DEVELOPMENT ENVIRONMENT

~alex/mandelbrot-set-gen

9c93210691d983831432f8d7ea4b5c52b7e8cc3f — Alejandro Laguna a month ago 84158eb
chore: add formatter rules
1 files changed, 26 insertions(+), 0 deletions(-)

A .clang-format
A .clang-format => .clang-format +26 -0
@@ 0,0 1,26 @@
BasedOnStyle: LLVM

IndentWidth: 4
TabWidth: 4
UseTab: Never

ColumnLimit: 100

BreakBeforeBraces: Attach

AllowShortIfStatementsOnASingleLine: AllIfsAndElse
AllowShortLoopsOnASingleLine: true
AllowShortFunctionsOnASingleLine: All

IndentCaseLabels: true
SpaceBeforeParens: ControlStatements
PointerAlignment: Left

SortIncludes: true
InsertBraces: true

BraceWrapping:
  AfterFunction: false
  AfterControlStatement: false
  AfterStruct: false
  AfterEnum: false