CPPLINT.cfg 503 B

12345678910111213141516
  1. # Stop searching for additional config files.
  2. set noparent
  3. # There are lots of functions taking arguments like `Foo& foo`
  4. # in k2, but cpplint complains about this style.
  5. filter=-runtime/references
  6. # Suppress warnings for `// TODO` without a user name.
  7. # cpplint recommends `// TODO(username): `.
  8. filter=-readability/todo
  9. # cpplint does not support lambdas decorated with __host__ __device__
  10. # and issues a warning: You don't need a ; after a }
  11. filter=-readability/braces
  12. filter=-runtime/references