diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-04-26 14:42:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-26 14:42:40 -0700 |
commit | 87636dccd404a340d75acb1d96301581343f29ca (patch) | |
tree | f56ec2ea8e166e5d02018cf7adc1c960dbeba55d /.clang-format | |
parent | 34dd4c7893056e13cc9174db988d03e438a6af3d (diff) | |
download | binaryen-87636dccd404a340d75acb1d96301581343f29ca.tar.gz binaryen-87636dccd404a340d75acb1d96301581343f29ca.tar.bz2 binaryen-87636dccd404a340d75acb1d96301581343f29ca.zip |
Add clang-format-diff hook (#2057)
This adds a commit hook to Travis CI that errors out if incoming PRs'
diffs are not clang-formatted. Turns out clang-format is also capable of
formatting JavaScript, but we haven't agreed on a style for JS yet, this
PR disables JavaScript formatting for now. This also adds clang-format
exempt header/footer to a generated source file.
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format index 9ca4dd982..cedadcbd0 100644 --- a/.clang-format +++ b/.clang-format @@ -1,3 +1,5 @@ +--- +Language: Cpp BasedOnStyle: LLVM PointerAlignment: Left IndentCaseLabels: true @@ -6,3 +8,7 @@ ConstructorInitializerIndentWidth: 2 SpaceAfterTemplateKeyword: false BinPackArguments: false BinPackParameters: false +--- +Language: JavaScript +DisableFormat: true +--- |