aboutsummaryrefslogtreecommitdiff
path: root/libcxx/src/.clang-tidy
blob: 3d5493d965558e479696afd1cd24b65f7102aad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
InheritParentConfig: true

Checks: >
  -clang-analyzer-*,

  -llvm-include-order,

  -modernize-loop-convert,
  -modernize-use-equals-delete,
  -modernize-use-nullptr,
  -modernize-use-override,

  -readability-identifier-naming,
  -readability-function-cognitive-complexity,
  -readability-function-size,
  -readability-simplify-boolean-expr,

# TODO: Consider enabling clang-analyzer. Without the checks clang-tidy runs 18x faster on my system.