From 9f94e8c8e80623372b450352f7a24dc8623f4712 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Thu, 11 Apr 2024 00:50:57 +0200 Subject: concepts: iter example, test out syntax --- .clang-tidy | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.clang-tidy') diff --git a/.clang-tidy b/.clang-tidy index fa33f96..062455a 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -21,13 +21,17 @@ WarningsAsErrors: '*' # some code; Checks: > -*, - readability-*, + readability-identifier-naming*, # readability-identifier-naming.* options: # https://clang.llvm.org/extra/clang-tidy/checks/readability/identifier-naming.html CheckOptions: - { key: readability-identifier-naming.ClassCase, value: lower_case } + - { key: readability-identifier-naming.ConceptCase, value: CamelCase } - { key: readability-identifier-naming.MemberCase, value: lower_case } - { key: readability-identifier-naming.MacroDefinitionCase, value: UPPER_CASE } - { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase } - { key: readability-identifier-naming.TypeAliasCase, value: lower_case } + + # https://github.com/llvm/llvm-project/issues/46097 + - { key: readability-identifier-naming.TypeTemplateParameterIgnoredRegexp, value: expr-type } -- cgit v1.2.3