.clang-tidy 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. # The checks defined here will be run and will display by default as warnings.
  18. Checks: >
  19. -*, clang-diagnostic-*, -clang-diagnostic-error,
  20. clang-analyzer-*,
  21. google-*, -google-runtime-references, -google-readability-todo,
  22. modernize-*, -modernize-use-trailing-return-type, -modernize-use-nodiscard,
  23. performance-*,
  24. bugprone-bool-pointer-implicit-conversion,
  25. bugprone-branch-clone,
  26. bugprone-dangling-handle,
  27. bugprone-exception-escape,
  28. bugprone-inaccurate-erase,
  29. # produce HeaderFilterRegex from core/build-support/lint_exclusions.txt with:
  30. # echo -n '^?!('; sed -e 's/*/\.*/g' core/build-support/lint_exclusions.txt | tr '\n' '|'; echo ')$'
  31. HeaderFilterRegex: '^?!(.*cmake-build-debug.*|.*cmake-build-release.*|.*cmake_build.*|.*thirdparty.*|.*src/grpc.*|.*output.*|.*unittest.*|.*src/pb.*)$'
  32. AnalyzeTemporaryDtors: true
  33. CheckOptions:
  34. - key: google-readability-braces-around-statements.ShortStatementLines
  35. value: '1'
  36. - key: google-readability-function-size.StatementThreshold
  37. value: '200'
  38. - key: google-readability-namespace-comments.ShortNamespaceLines
  39. value: '10'
  40. - key: google-readability-namespace-comments.SpacesBeforeComments
  41. value: '2'