diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-04 10:52:29 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-04 10:54:04 +0300 |
commit | 5b79b1f6eb7e2839b7d69c01107449f94b1524df (patch) | |
tree | 771710dbd49c2c81ec6edd2993b7a12a4fd3274b | |
parent | add string conversion functions + some tests (diff) | |
download | winapi-utf8-5b79b1f6eb7e2839b7d69c01107449f94b1524df.tar.gz winapi-utf8-5b79b1f6eb7e2839b7d69c01107449f94b1524df.zip |
add .clang-format
-rw-r--r-- | .clang-format | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..3b07efb --- /dev/null +++ b/.clang-format @@ -0,0 +1,20 @@ +--- +Language: Cpp +BasedOnStyle: Chromium + +AccessModifierOffset: -4 +ColumnLimit: 100 +IncludeBlocks: Regroup +IndentWidth: 4 +SpacesBeforeTrailingComments: 1 + +IncludeCategories: + - Regex: '^".*' + Priority: 1 + - Regex: '^<(winapi)/' + Priority: 2 + - Regex: '^<boost/' + Priority: 3 + - Regex: '.*' + Priority: 4 +... |