Changeset View
Changeset View
Standalone View
Standalone View
docs/clang-tidy/checks/readability-identifier-naming.rst
Show All 11 Lines | |||||
Casing types inclde: | Casing types inclde: | ||||
- ``lower_case``, | - ``lower_case``, | ||||
- ``UPPER_CASE``, | - ``UPPER_CASE``, | ||||
- ``camelBack``, | - ``camelBack``, | ||||
- ``CamelCase``, | - ``CamelCase``, | ||||
- ``camel_Snake_Back``, | - ``camel_Snake_Back``, | ||||
- ``Camel_Snake_Case``, | - ``Camel_Snake_Case``, | ||||
- ``camelBackOrCase``, | |||||
- ``aNy_CasE``. | - ``aNy_CasE``. | ||||
It also supports a fixed prefix and suffix that will be prepended or appended | It also supports a fixed prefix and suffix that will be prepended or appended | ||||
to the identifiers, regardless of the casing. | to the identifiers, regardless of the casing. | ||||
Many configuration options are available, in order to be able to create | Many configuration options are available, in order to be able to create | ||||
different rules for different kinds of identifiers. In general, the rules are | different rules for different kinds of identifiers. In general, the rules are | ||||
falling back to a more generic rule if the specific case is not configured. | falling back to a more generic rule if the specific case is not configured. | ||||
``camelBackOrCase`` allows for both `camelBack` or `CamelCase` cased | |||||
Eugene.Zelenko: Please fix double space. | |||||
identifiers to be used to match prior LLVM code style | |||||
Options | Options | ||||
------- | ------- | ||||
The following options are describe below: | The following options are describe below: | ||||
- :option:`AbstractClassCase`, :option:`AbstractClassPrefix`, :option:`AbstractClassSuffix` | - :option:`AbstractClassCase`, :option:`AbstractClassPrefix`, :option:`AbstractClassSuffix` | ||||
- :option:`ClassCase`, :option:`ClassPrefix`, :option:`ClassSuffix` | - :option:`ClassCase`, :option:`ClassPrefix`, :option:`ClassSuffix` | ||||
- :option:`ClassConstantCase`, :option:`ClassConstantPrefix`, :option:`ClassConstantSuffix` | - :option:`ClassConstantCase`, :option:`ClassConstantPrefix`, :option:`ClassConstantSuffix` | ||||
▲ Show 20 Lines • Show All 1,887 Lines • Show Last 20 Lines |
Please fix double space.