|
| 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 | +--- |
| 18 | +Checks: | |
| 19 | + -*, |
| 20 | + clang-diagnostic-*, |
| 21 | + clang-analyzer-*, |
| 22 | + google-*, |
| 23 | + modernize-*, |
| 24 | + -modernize-use-nodiscard, |
| 25 | + -modernize-use-trailing-return-type, |
| 26 | + readability-identifier-naming, |
| 27 | +
|
| 28 | +CheckOptions: |
| 29 | + - key: readability-identifier-naming.ParameterCase |
| 30 | + value: camelBack |
| 31 | + - key: readability-identifier-naming.ClassCase |
| 32 | + value: CamelCase |
| 33 | + - key: readability-identifier-naming.ClassMethodCase |
| 34 | + value: CamelCase |
| 35 | + - key: readability-identifier-naming.FunctionCase |
| 36 | + value: CamelCase |
| 37 | + - key: readability-identifier-naming.EnumConstantCase |
| 38 | + value: CamelCase |
| 39 | + - key: readability-identifier-naming.StaticConstantCase |
| 40 | + value: CamelCase |
| 41 | + - key: readability-identifier-naming.ScopedEnumConstantCase |
| 42 | + value: CamelCase |
| 43 | + - key: readability-identifier-naming.ConstexprVariableCase |
| 44 | + value: CamelCase |
| 45 | + - key: readability-identifier-naming.ClassConstantCase |
| 46 | + value: CamelCase |
| 47 | + - key: readability-identifier-naming.MemberCase |
| 48 | + value: lower_case |
| 49 | + - key: readability-identifier-naming.MemberSuffix |
| 50 | + value: '_' |
| 51 | + - key: readability-identifier-naming.VariableCase |
| 52 | + value: lower_case |
| 53 | + - key: readability-identifier-naming.VariableSuffix |
| 54 | + value: '' |
| 55 | + - key: readability-identifier-naming.ConstantPointerParameterCase |
| 56 | + value: lower_case |
| 57 | + - key: readability-identifier-naming.LocalConstantPointerCase |
| 58 | + value: lower_case |
| 59 | + |
| 60 | +HeaderFilterRegex: '(src|test|example)' |
0 commit comments