Skip to content

Commit f91f8b3

Browse files
committed
Initial commit
0 parents  commit f91f8b3

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

.clang-format

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
BasedOnStyle: Google
3+
---
4+
Language: Cpp
5+
# Some older clang-format (as I known 7.0), `IncludeBlocks` is set to `Preserve`, set it to Regroup explicitly.
6+
IncludeBlocks: Regroup
7+
# Overwrite default include categories to recognize `<*.hpp>` as 'Other libraries'.
8+
IncludeCategories:
9+
- Regex: '^<ext/.*\.h>'
10+
Priority: 2
11+
- Regex: '^<.*\.h>'
12+
Priority: 1
13+
- Regex: '^<[^\.]*>'
14+
Priority: 2
15+
- Regex: '^<.*>'
16+
Priority: 3
17+
- Regex: '.*'
18+
Priority: 4
19+
ColumnLimit: 128
20+
...

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
**/.*.swp
2+
**/*.a
3+
**/*.so
4+
**/*.dylib
5+
6+
conan.lock
7+
conan_paths.cmake
8+
conanbuildinfo.txt
9+
conaninfo.txt
10+
graph_info.json
11+
12+
CMakeCache.txt
13+
CMakeFiles
14+
Testing
15+
*.cmake
16+
Makefile
17+
cmake-build-*
18+
19+
.idea
20+
compile_commands.json
21+
DartConfiguration.tcl
22+
**/*.cbp
23+
24+
tags

0 commit comments

Comments
 (0)