Skip to content

Commit a53840f

Browse files
committed
some cleanup
1 parent badfc59 commit a53840f

Some content is hidden

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

60 files changed

+8020
-9136
lines changed

.clang-format

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# We'll use defaults from the LLVM style, but with 4 columns indentation.
2+
BasedOnStyle: LLVM
3+
IndentWidth: 4
4+
ContinuationIndentWidth: 8
5+
6+
ColumnLimit: 100
7+
Language: Cpp
8+
PointerAlignment: Right
9+
10+
AccessModifierOffset: -4
11+
12+
NamespaceIndentation: None
13+
BreakConstructorInitializers: AfterColon
14+
BreakBeforeBinaryOperators: NonAssignment
15+
BinPackArguments: false
16+
BinPackParameters: false
17+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
18+
19+
ReflowComments: true
20+
IncludeBlocks: Preserve

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ CMakeDoxyfile.in
1212
CMakeDoxygenDefaults.cmake
1313
CMakeSettings.json
1414
/.vs/
15-
/out/
15+
/out/
16+
.cache
17+
*.vcxproj
18+
*.sln
19+
*.filters

.lang-tidy

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Checks: >
2+
*,
3+
-llvmlibc-*,
4+
-fuchsia-*,
5+
-modernize-use-trailing-return-type,
6+
-google-build-using-namespace,
7+
-altera-struct-pack-align,
8+
-altera-id-dependent-backward-branch,
9+
-altera-unroll-loops,
10+
-abseil-string-find-startswith,
11+
-readability-identifier-length,
12+
-bugprone-easily-swappable-parameters
13+
CheckOptions:
14+
- key: misc-non-private-member-variables-in-classes.IgnorePublicMemberVariables
15+
value: 1
16+
- key: cppcoreguidelines-non-private-member-variables-in-classes.IgnorePublicMemberVariables
17+
value: 1

0 commit comments

Comments
 (0)