DEVELOPMENT ENVIRONMENT

~alex/mandelbrot-set-gen

mandelbrot-set-gen/.clang-format -rw-r--r-- 464 bytes
7af1c941Alejandro Laguna feat: getopts_long a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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