summaryrefslogtreecommitdiff
path: root/.clang-format
Commit message (Collapse)AuthorAgeFilesLines
* Add package.json for unit tests (#6245)Alon Zakai2024-02-081-0/+3
| | | | | | | | | The JS there is not an ES6 module, so declare it so (otherwise a package.json in a parent, perhaps in folders outside of our own project that we are pasted in, can cause an error, as require does not work in ES6 modules and we might be forced to be seen as one). Fixes #6240
* Add clang-format-diff hook (#2057)Heejin Ahn2019-04-261-0/+6
| | | | | | | 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.
* Don't allow short if/case/blocks on a single line (#2044)Heejin Ahn2019-04-231-3/+0
| | | | | | | While looking at code changes after mass clang-formatting our current codebase, I think this rather hurts readability than improves it. And none of preset styles (LLVM, Chrome, Google, Mozilla, and WebKit) allows these, with only exception that Google allows short ifs on a single line.
* Don't binpack arguments and parameters (#2038)Heejin Ahn2019-04-221-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Looking at the current codebase, we don't mostly binpack arguments and parameters when they don't fit in a single line. BinPackArguments: ``` true: void f() { f(aaaaaaaaaaaaaaaaaaaa, aaaaaaaaaaaaaaaaaaaa, aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa); } false: void f() { f(aaaaaaaaaaaaaaaaaaaa, aaaaaaaaaaaaaaaaaaaa, aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa); } ``` BinPackParameters: ``` true: void f(int aaaaaaaaaaaaaaaaaaaa, int aaaaaaaaaaaaaaaaaaaa, int aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa) {} false: void f(int aaaaaaaaaaaaaaaaaaaa, int aaaaaaaaaaaaaaaaaaaa, int aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa) {} ```
* Modify .clang-format (#1986)Heejin Ahn2019-04-111-2/+3
| | | | | | | Modifies .clang-format to reflect discussions in #1981. This basically removes the custom 100 cols line length and allows one-line ifs/cases/blocks. There is one more similar option in clang-format, `AllowShortLoopsOnASingleLine`, but I couldn't find any one-line for loop in our codebase, so I think we don't use it.
* standardize on 'template<' over 'template <' (i.e., remove a space) (#1782)Alon Zakai2018-11-291-0/+1
|
* Add .clang-format (#1407)Heejin Ahn2018-02-131-0/+7