Index

ncurses-minesweeper / master

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
1012 Sep 2020 16:1857786abUpdate lint configJosh Stockin174G

Blob @ ncurses-minesweeper / .clang-format

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