diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-14 02:01:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-14 02:01:37 +0300 |
commit | 1b6e5d984bad351f7ec96687854bfc52cfc83dac (patch) | |
tree | fe7dedbc189c63a82d6cdf2fd72fbf4d8a25f2ab /.clang-format | |
parent | add Handle class (diff) | |
download | winapi-common-1b6e5d984bad351f7ec96687854bfc52cfc83dac.tar.gz winapi-common-1b6e5d984bad351f7ec96687854bfc52cfc83dac.zip |
add .clang-format
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..6a036ac --- /dev/null +++ b/.clang-format @@ -0,0 +1,22 @@ +--- +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: '^<.*\.h>$' + Priority: 4 + - Regex: '.*' + Priority: 5 +... |