summaryrefslogtreecommitdiff
path: root/.clang-tidy
Commit message (Collapse)AuthorAgeFilesLines
* Disable clang static analyzer in clang-tidy (#2136)Heejin Ahn2019-05-231-1/+1
| | | | | | | | | | | | | clang-tidy by default enables two groups of checks: clang-diagnostic-* and clang-analyzer-*. Between the two, clang-analyzer is a static analyzer, but it seems to often produces false warnings. For example, when you write `object->someFunction()`, if it is not sure if object is not a NULL, i.e., if there's no assert(object) before, it produces a warning. This is sometimes annoying and inserting `assert` everywhere does not seem to be very appealing. I also noticed LLVM and V8 also disabled this analyzer. `-*` disables all checks. Then I re-enabled clang-diagnostic and readability-braces-around-statements.
* Make clang-tidy check header files too (#2072)Heejin Ahn2019-04-301-0/+1
| | | Without this header file errors would be ignored.
* Add .clang-tidy (#2062)Heejin Ahn2019-04-291-0/+16
We can add more checks later, but for now, this checks - If the styles for variables, functions, and classes match what we currently have - If bodies of if/for/while/do_while are inside braces - Some clang-tidy default checks that are related to possibly buggy code