Index

ncurses-minesweeper / ce8c2d3

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
610 Sep 2020 18:1369783cdRewrite lint make targets; create clang-format configJosh Stockin1360G

Blob @ ncurses-minesweeper / .clang-format

text/plain733 bytesdownload raw
1---
2BasedOnStyle: 'Google'
3Language: Cpp
4
5AlignAfterOpenBracket: AlwaysBreak
6AlignEscapedNewlines: Left
7AlignTrailingComments: true
8
9AllowShortBlocksOnASingleLine: false
10AllowShortCaseLabelsOnASingleLine: false
11AllowShortIfStatementsOnASingleLine: WithoutElse
12AllowShortLoopsOnASingleLine: true
13
14AlwaysBreakAfterReturnType: None
15BinPackParameters: false
16
17BreakBeforeBraces: Attach
18BreakBeforeTernaryOperators: true
19BreakStringLiterals: true
20
21ColumnLimit: 80
22IndentWidth: 4
23TabWidth: 4
24MaxEmptyLinesToKeep: 2
25UseTab: Never
26
27IncludeBlocks: Regroup
28SortIncludes: true
29
30IndentCaseLabels: true
31IndentGotoLabels: false
32IndentPPDirectives: AfterHash
33IndentWrappedFunctionNames: true
34
35PointerAlignment: Right
36SpacesBeforeTrailingComments: 1
37