Skip to content

Commit 05957c6

Browse files
committedSep 1, 2021
Initial github commit
1 parent 5531e3b commit 05957c6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+10247
-0
lines changed
 

‎.clang-format

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
IndentWidth: 2
2+
AccessModifierOffset: -2
3+
UseTab: Never
4+
ColumnLimit: 80
5+
MaxEmptyLinesToKeep: 2
6+
SpaceBeforeParens: ControlStatements
7+
BreakBeforeBraces: Custom
8+
BraceWrapping:
9+
AfterFunction: true
10+
AfterClass: false
11+
AfterStruct: false
12+
AfterEnum: false
13+
BeforeElse: false
14+
BeforeCatch: false
15+
SplitEmptyFunction: false
16+
AfterNamespace: false
17+
AfterExternBlock: true
18+
SplitEmptyRecord: false
19+
NamespaceIndentation: All
20+
AllowShortCaseLabelsOnASingleLine: true
21+
AllowShortBlocksOnASingleLine: Empty
22+
PointerAlignment: Left
23+
AlwaysBreakAfterReturnType: AllDefinitions
24+
AlignAfterOpenBracket: Align
25+
AllowAllParametersOfDeclarationOnNextLine: true
26+
AllowAllArgumentsOnNextLine: true
27+
SpaceInEmptyBlock: true
28+
SpaceInEmptyParentheses: false
29+
SpacesInAngles: false
30+
SpaceBeforeRangeBasedForLoopColon: false
31+
BreakConstructorInitializers: BeforeColon
32+
AllowAllConstructorInitializersOnNextLine: false
33+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
34+
BreakConstructorInitializers: BeforeComma
35+
AlwaysBreakTemplateDeclarations: Yes
36+
AllowShortCaseLabelsOnASingleLine: false

‎.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
build/*
2+
lightning_server/*
3+
.vscode/*
4+
src/lscomm.grpc.pb.cc
5+
src/lscomm.grpc.pb.h
6+
src/lscomm.pb.cc
7+
src/lscomm.pb.h
8+
images/*

0 commit comments

Comments
 (0)
Please sign in to comment.