Home | History | Annotate | Line # | Download | only in clang
      1 Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-readability-identifier-naming'
      2 # Note that the readability-identifier-naming check is disabled, there are too
      3 # many violations in the codebase and they create too much noise in clang-tidy
      4 # results.
      5 # Naming settings are kept for documentation purposes and allowing to run the
      6 # check if the users would override this file, e.g. via a command-line arg.
      7 CheckOptions:
      8   - key:             readability-identifier-naming.ClassCase
      9     value:           CamelCase
     10   - key:             readability-identifier-naming.EnumCase
     11     value:           CamelCase
     12   - key:             readability-identifier-naming.FunctionCase
     13     value:           camelBack
     14   - key:             readability-identifier-naming.MemberCase
     15     value:           CamelCase
     16   - key:             readability-identifier-naming.ParameterCase
     17     value:           CamelCase
     18   - key:             readability-identifier-naming.UnionCase
     19     value:           CamelCase
     20   - key:             readability-identifier-naming.VariableCase
     21     value:           CamelCase
     22   - key:             readability-identifier-naming.IgnoreMainLikeFunctions
     23     value:           1
     24 
     25