1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032
|
.. title:: clang-tidy - readability-identifier-naming
readability-identifier-naming
=============================
Checks for identifiers naming style mismatch.
This check will try to enforce coding guidelines on the identifiers naming. It
supports one of the following casing types and tries to convert from one to
another if a mismatch is detected
Casing types include:
- ``lower_case``,
- ``UPPER_CASE``,
- ``camelBack``,
- ``CamelCase``,
- ``camel_Snake_Back``,
- ``Camel_Snake_Case``,
- ``aNy_CasE``.
It also supports a fixed prefix and suffix that will be prepended or appended
to the identifiers, regardless of the casing.
Many configuration options are available, in order to be able to create
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.
The naming of virtual methods is reported where they occur in the base class,
but not where they are overridden, as it can't be fixed locally there.
This also applies for pseudo-override patterns like CRTP.
Options
-------
The following options are describe below:
- :option:`AbstractClassCase`, :option:`AbstractClassPrefix`, :option:`AbstractClassSuffix`
- :option:`AggressiveDependentMemberLookup`
- :option:`ClassCase`, :option:`ClassPrefix`, :option:`ClassSuffix`
- :option:`ClassConstantCase`, :option:`ClassConstantPrefix`, :option:`ClassConstantSuffix`
- :option:`ClassMemberCase`, :option:`ClassMemberPrefix`, :option:`ClassMemberSuffix`
- :option:`ClassMethodCase`, :option:`ClassMethodPrefix`, :option:`ClassMethodSuffix`
- :option:`ConstantCase`, :option:`ConstantPrefix`, :option:`ConstantSuffix`
- :option:`ConstantMemberCase`, :option:`ConstantMemberPrefix`, :option:`ConstantMemberSuffix`
- :option:`ConstantParameterCase`, :option:`ConstantParameterPrefix`, :option:`ConstantParameterSuffix`
- :option:`ConstantPointerParameterCase`, :option:`ConstantPointerParameterPrefix`, :option:`ConstantPointerParameterSuffix`
- :option:`ConstexprFunctionCase`, :option:`ConstexprFunctionPrefix`, :option:`ConstexprFunctionSuffix`
- :option:`ConstexprMethodCase`, :option:`ConstexprMethodPrefix`, :option:`ConstexprMethodSuffix`
- :option:`ConstexprVariableCase`, :option:`ConstexprVariablePrefix`, :option:`ConstexprVariableSuffix`
- :option:`EnumCase`, :option:`EnumPrefix`, :option:`EnumSuffix`
- :option:`EnumConstantCase`, :option:`EnumConstantPrefix`, :option:`EnumConstantSuffix`
- :option:`FunctionCase`, :option:`FunctionPrefix`, :option:`FunctionSuffix`
- :option:`GlobalConstantCase`, :option:`GlobalConstantPrefix`, :option:`GlobalConstantSuffix`
- :option:`GlobalConstantPointerCase`, :option:`GlobalConstantPointerPrefix`, :option:`GlobalConstantPointerSuffix`
- :option:`GlobalFunctionCase`, :option:`GlobalFunctionPrefix`, :option:`GlobalFunctionSuffix`
- :option:`GlobalPointerCase`, :option:`GlobalPointerPrefix`, :option:`GlobalPointerSuffix`
- :option:`GlobalVariableCase`, :option:`GlobalVariablePrefix`, :option:`GlobalVariableSuffix`
- :option:`IgnoreMainLikeFunctions`
- :option:`InlineNamespaceCase`, :option:`InlineNamespacePrefix`, :option:`InlineNamespaceSuffix`
- :option:`LocalConstantCase`, :option:`LocalConstantPrefix`, :option:`LocalConstantSuffix`
- :option:`LocalConstantPointerCase`, :option:`LocalConstantPointerPrefix`, :option:`LocalConstantPointerSuffix`
- :option:`LocalPointerCase`, :option:`LocalPointerPrefix`, :option:`LocalPointerSuffix`
- :option:`LocalVariableCase`, :option:`LocalVariablePrefix`, :option:`LocalVariableSuffix`
- :option:`MacroDefinitionCase`, :option:`MacroDefinitionPrefix`, :option:`MacroDefinitionSuffix`
- :option:`MemberCase`, :option:`MemberPrefix`, :option:`MemberSuffix`
- :option:`MethodCase`, :option:`MethodPrefix`, :option:`MethodSuffix`
- :option:`NamespaceCase`, :option:`NamespacePrefix`, :option:`NamespaceSuffix`
- :option:`ParameterCase`, :option:`ParameterPrefix`, :option:`ParameterSuffix`
- :option:`ParameterPackCase`, :option:`ParameterPackPrefix`, :option:`ParameterPackSuffix`
- :option:`PointerParameterCase`, :option:`PointerParameterPrefix`, :option:`PointerParameterSuffix`
- :option:`PrivateMemberCase`, :option:`PrivateMemberPrefix`, :option:`PrivateMemberSuffix`
- :option:`PrivateMethodCase`, :option:`PrivateMethodPrefix`, :option:`PrivateMethodSuffix`
- :option:`ProtectedMemberCase`, :option:`ProtectedMemberPrefix`, :option:`ProtectedMemberSuffix`
- :option:`ProtectedMethodCase`, :option:`ProtectedMethodPrefix`, :option:`ProtectedMethodSuffix`
- :option:`PublicMemberCase`, :option:`PublicMemberPrefix`, :option:`PublicMemberSuffix`
- :option:`PublicMethodCase`, :option:`PublicMethodPrefix`, :option:`PublicMethodSuffix`
- :option:`StaticConstantCase`, :option:`StaticConstantPrefix`, :option:`StaticConstantSuffix`
- :option:`StaticVariableCase`, :option:`StaticVariablePrefix`, :option:`StaticVariableSuffix`
- :option:`StructCase`, :option:`StructPrefix`, :option:`StructSuffix`
- :option:`TemplateParameterCase`, :option:`TemplateParameterPrefix`, :option:`TemplateParameterSuffix`
- :option:`TemplateTemplateParameterCase`, :option:`TemplateTemplateParameterPrefix`, :option:`TemplateTemplateParameterSuffix`
- :option:`TypeAliasCase`, :option:`TypeAliasPrefix`, :option:`TypeAliasSuffix`
- :option:`TypedefCase`, :option:`TypedefPrefix`, :option:`TypedefSuffix`
- :option:`TypeTemplateParameterCase`, :option:`TypeTemplateParameterPrefix`, :option:`TypeTemplateParameterSuffix`
- :option:`UnionCase`, :option:`UnionPrefix`, :option:`UnionSuffix`
- :option:`ValueTemplateParameterCase`, :option:`ValueTemplateParameterPrefix`, :option:`ValueTemplateParameterSuffix`
- :option:`VariableCase`, :option:`VariablePrefix`, :option:`VariableSuffix`
- :option:`VirtualMethodCase`, :option:`VirtualMethodPrefix`, :option:`VirtualMethodSuffix`
.. option:: AbstractClassCase
When defined, the check will ensure abstract class names conform to the
selected casing.
.. option:: AbstractClassPrefix
When defined, the check will ensure abstract class names will add the
prefixed with the given value (regardless of casing).
.. option:: AbstractClassSuffix
When defined, the check will ensure abstract class names will add the
suffix with the given value (regardless of casing).
For example using values of:
- AbstractClassCase of ``lower_case``
- AbstractClassPrefix of ``pre_``
- AbstractClassSuffix of ``_post``
Identifies and/or transforms abstract class names as follows:
Before:
.. code-block:: c++
class ABSTRACT_CLASS {
public:
ABSTRACT_CLASS();
};
After:
.. code-block:: c++
class pre_abstract_class_post {
public:
pre_abstract_class_post();
};
.. option:: AggressiveDependentMemberLookup
When set to `1` the check will look in dependent base classes for dependent
member references that need changing. This can lead to errors with template
specializations so the default value is `0`.
For example using values of:
- ClassMemberCase of ``lower_case``
Before:
.. code-block:: c++
template <typename T>
struct Base {
T BadNamedMember;
};
template <typename T>
struct Derived : Base<T> {
void reset() {
this->BadNamedMember = 0;
}
};
After if AggressiveDependentMemberLookup is ``0``:
.. code-block:: c++
template <typename T>
struct Base {
T bad_named_member;
};
template <typename T>
struct Derived : Base<T> {
void reset() {
this->BadNamedMember = 0;
}
};
After if AggressiveDependentMemberLookup is ``1``:
.. code-block:: c++
template <typename T>
struct Base {
T bad_named_member;
};
template <typename T>
struct Derived : Base<T> {
void reset() {
this->bad_named_member = 0;
}
};
.. option:: ClassCase
When defined, the check will ensure class names conform to the
selected casing.
.. option:: ClassPrefix
When defined, the check will ensure class names will add the
prefixed with the given value (regardless of casing).
.. option:: ClassSuffix
When defined, the check will ensure class names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ClassCase of ``lower_case``
- ClassPrefix of ``pre_``
- ClassSuffix of ``_post``
Identifies and/or transforms class names as follows:
Before:
.. code-block:: c++
class FOO {
public:
FOO();
~FOO();
};
After:
.. code-block:: c++
class pre_foo_post {
public:
pre_foo_post();
~pre_foo_post();
};
.. option:: ClassConstantCase
When defined, the check will ensure class constant names conform to the
selected casing.
.. option:: ClassConstantPrefix
When defined, the check will ensure class constant names will add the
prefixed with the given value (regardless of casing).
.. option:: ClassConstantSuffix
When defined, the check will ensure class constant names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ClassConstantCase of ``lower_case``
- ClassConstantPrefix of ``pre_``
- ClassConstantSuffix of ``_post``
Identifies and/or transforms class constant names as follows:
Before:
.. code-block:: c++
class FOO {
public:
static const int CLASS_CONSTANT;
};
After:
.. code-block:: c++
class FOO {
public:
static const int pre_class_constant_post;
};
.. option:: ClassMemberCase
When defined, the check will ensure class member names conform to the
selected casing.
.. option:: ClassMemberPrefix
When defined, the check will ensure class member names will add the
prefixed with the given value (regardless of casing).
.. option:: ClassMemberSuffix
When defined, the check will ensure class member names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ClassMemberCase of ``lower_case``
- ClassMemberPrefix of ``pre_``
- ClassMemberSuffix of ``_post``
Identifies and/or transforms class member names as follows:
Before:
.. code-block:: c++
class FOO {
public:
static int CLASS_CONSTANT;
};
After:
.. code-block:: c++
class FOO {
public:
static int pre_class_constant_post;
};
.. option:: ClassMethodCase
When defined, the check will ensure class method names conform to the
selected casing.
.. option:: ClassMethodPrefix
When defined, the check will ensure class method names will add the
prefixed with the given value (regardless of casing).
.. option:: ClassMethodSuffix
When defined, the check will ensure class method names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ClassMethodCase of ``lower_case``
- ClassMethodPrefix of ``pre_``
- ClassMethodSuffix of ``_post``
Identifies and/or transforms class method names as follows:
Before:
.. code-block:: c++
class FOO {
public:
int CLASS_MEMBER();
};
After:
.. code-block:: c++
class FOO {
public:
int pre_class_member_post();
};
.. option:: ConstantCase
When defined, the check will ensure constant names conform to the
selected casing.
.. option:: ConstantPrefix
When defined, the check will ensure constant names will add the
prefixed with the given value (regardless of casing).
.. option:: ConstantSuffix
When defined, the check will ensure constant names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ConstantCase of ``lower_case``
- ConstantPrefix of ``pre_``
- ConstantSuffix of ``_post``
Identifies and/or transforms constant names as follows:
Before:
.. code-block:: c++
void function() { unsigned const MyConst_array[] = {1, 2, 3}; }
After:
.. code-block:: c++
void function() { unsigned const pre_myconst_array_post[] = {1, 2, 3}; }
.. option:: ConstantMemberCase
When defined, the check will ensure constant member names conform to the
selected casing.
.. option:: ConstantMemberPrefix
When defined, the check will ensure constant member names will add the
prefixed with the given value (regardless of casing).
.. option:: ConstantMemberSuffix
When defined, the check will ensure constant member names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ConstantMemberCase of ``lower_case``
- ConstantMemberPrefix of ``pre_``
- ConstantMemberSuffix of ``_post``
Identifies and/or transforms constant member names as follows:
Before:
.. code-block:: c++
class Foo {
char const MY_ConstMember_string[4] = "123";
}
After:
.. code-block:: c++
class Foo {
char const pre_my_constmember_string_post[4] = "123";
}
.. option:: ConstantParameterCase
When defined, the check will ensure constant parameter names conform to the
selected casing.
.. option:: ConstantParameterPrefix
When defined, the check will ensure constant parameter names will add the
prefixed with the given value (regardless of casing).
.. option:: ConstantParameterSuffix
When defined, the check will ensure constant parameter names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ConstantParameterCase of ``lower_case``
- ConstantParameterPrefix of ``pre_``
- ConstantParameterSuffix of ``_post``
Identifies and/or transforms constant parameter names as follows:
Before:
.. code-block:: c++
void GLOBAL_FUNCTION(int PARAMETER_1, int const CONST_parameter);
After:
.. code-block:: c++
void GLOBAL_FUNCTION(int PARAMETER_1, int const pre_const_parameter_post);
.. option:: ConstantPointerParameterCase
When defined, the check will ensure constant pointer parameter names conform to the
selected casing.
.. option:: ConstantPointerParameterPrefix
When defined, the check will ensure constant pointer parameter names will add the
prefixed with the given value (regardless of casing).
.. option:: ConstantPointerParameterSuffix
When defined, the check will ensure constant pointer parameter names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ConstantPointerParameterCase of ``lower_case``
- ConstantPointerParameterPrefix of ``pre_``
- ConstantPointerParameterSuffix of ``_post``
Identifies and/or transforms constant pointer parameter names as follows:
Before:
.. code-block:: c++
void GLOBAL_FUNCTION(int const *CONST_parameter);
After:
.. code-block:: c++
void GLOBAL_FUNCTION(int const *pre_const_parameter_post);
.. option:: ConstexprFunctionCase
When defined, the check will ensure constexpr function names conform to the
selected casing.
.. option:: ConstexprFunctionPrefix
When defined, the check will ensure constexpr function names will add the
prefixed with the given value (regardless of casing).
.. option:: ConstexprFunctionSuffix
When defined, the check will ensure constexpr function names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ConstexprFunctionCase of ``lower_case``
- ConstexprFunctionPrefix of ``pre_``
- ConstexprFunctionSuffix of ``_post``
Identifies and/or transforms constexpr function names as follows:
Before:
.. code-block:: c++
constexpr int CE_function() { return 3; }
After:
.. code-block:: c++
constexpr int pre_ce_function_post() { return 3; }
.. option:: ConstexprMethodCase
When defined, the check will ensure constexpr method names conform to the
selected casing.
.. option:: ConstexprMethodPrefix
When defined, the check will ensure constexpr method names will add the
prefixed with the given value (regardless of casing).
.. option:: ConstexprMethodSuffix
When defined, the check will ensure constexpr method names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ConstexprMethodCase of ``lower_case``
- ConstexprMethodPrefix of ``pre_``
- ConstexprMethodSuffix of ``_post``
Identifies and/or transforms constexpr method names as follows:
Before:
.. code-block:: c++
class Foo {
public:
constexpr int CST_expr_Method() { return 2; }
}
After:
.. code-block:: c++
class Foo {
public:
constexpr int pre_cst_expr_method_post() { return 2; }
}
.. option:: ConstexprVariableCase
When defined, the check will ensure constexpr variable names conform to the
selected casing.
.. option:: ConstexprVariablePrefix
When defined, the check will ensure constexpr variable names will add the
prefixed with the given value (regardless of casing).
.. option:: ConstexprVariableSuffix
When defined, the check will ensure constexpr variable names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ConstexprVariableCase of ``lower_case``
- ConstexprVariablePrefix of ``pre_``
- ConstexprVariableSuffix of ``_post``
Identifies and/or transforms constexpr variable names as follows:
Before:
.. code-block:: c++
constexpr int ConstExpr_variable = MyConstant;
After:
.. code-block:: c++
constexpr int pre_constexpr_variable_post = MyConstant;
.. option:: EnumCase
When defined, the check will ensure enumeration names conform to the
selected casing.
.. option:: EnumPrefix
When defined, the check will ensure enumeration names will add the
prefixed with the given value (regardless of casing).
.. option:: EnumSuffix
When defined, the check will ensure enumeration names will add the
suffix with the given value (regardless of casing).
For example using values of:
- EnumCase of ``lower_case``
- EnumPrefix of ``pre_``
- EnumSuffix of ``_post``
Identifies and/or transforms enumeration names as follows:
Before:
.. code-block:: c++
enum FOO { One, Two, Three };
After:
.. code-block:: c++
enum pre_foo_post { One, Two, Three };
.. option:: EnumConstantCase
When defined, the check will ensure enumeration constant names conform to the
selected casing.
.. option:: EnumConstantPrefix
When defined, the check will ensure enumeration constant names will add the
prefixed with the given value (regardless of casing).
.. option:: EnumConstantSuffix
When defined, the check will ensure enumeration constant names will add the
suffix with the given value (regardless of casing).
For example using values of:
- EnumConstantCase of ``lower_case``
- EnumConstantPrefix of ``pre_``
- EnumConstantSuffix of ``_post``
Identifies and/or transforms enumeration constant names as follows:
Before:
.. code-block:: c++
enum FOO { One, Two, Three };
After:
.. code-block:: c++
enum FOO { pre_One_post, pre_Two_post, pre_Three_post };
.. option:: FunctionCase
When defined, the check will ensure function names conform to the
selected casing.
.. option:: FunctionPrefix
When defined, the check will ensure function names will add the
prefixed with the given value (regardless of casing).
.. option:: FunctionSuffix
When defined, the check will ensure function names will add the
suffix with the given value (regardless of casing).
For example using values of:
- FunctionCase of ``lower_case``
- FunctionPrefix of ``pre_``
- FunctionSuffix of ``_post``
Identifies and/or transforms function names as follows:
Before:
.. code-block:: c++
char MY_Function_string();
After:
.. code-block:: c++
char pre_my_function_string_post();
.. option:: GlobalConstantCase
When defined, the check will ensure global constant names conform to the
selected casing.
.. option:: GlobalConstantPrefix
When defined, the check will ensure global constant names will add the
prefixed with the given value (regardless of casing).
.. option:: GlobalConstantSuffix
When defined, the check will ensure global constant names will add the
suffix with the given value (regardless of casing).
For example using values of:
- GlobalConstantCase of ``lower_case``
- GlobalConstantPrefix of ``pre_``
- GlobalConstantSuffix of ``_post``
Identifies and/or transforms global constant names as follows:
Before:
.. code-block:: c++
unsigned const MyConstGlobal_array[] = {1, 2, 3};
After:
.. code-block:: c++
unsigned const pre_myconstglobal_array_post[] = {1, 2, 3};
.. option:: GlobalConstantPointerCase
When defined, the check will ensure global constant pointer names conform to the
selected casing.
.. option:: GlobalConstantPointerPrefix
When defined, the check will ensure global constant pointer names will add the
prefixed with the given value (regardless of casing).
.. option:: GlobalConstantPointerSuffix
When defined, the check will ensure global constant pointer names will add the
suffix with the given value (regardless of casing).
For example using values of:
- GlobalConstantPointerCase of ``lower_case``
- GlobalConstantPointerPrefix of ``pre_``
- GlobalConstantPointerSuffix of ``_post``
Identifies and/or transforms global constant pointer names as follows:
Before:
.. code-block:: c++
int *const MyConstantGlobalPointer = nullptr;
After:
.. code-block:: c++
int *const pre_myconstantglobalpointer_post = nullptr;
.. option:: GlobalFunctionCase
When defined, the check will ensure global function names conform to the
selected casing.
.. option:: GlobalFunctionPrefix
When defined, the check will ensure global function names will add the
prefixed with the given value (regardless of casing).
.. option:: GlobalFunctionSuffix
When defined, the check will ensure global function names will add the
suffix with the given value (regardless of casing).
For example using values of:
- GlobalFunctionCase of ``lower_case``
- GlobalFunctionPrefix of ``pre_``
- GlobalFunctionSuffix of ``_post``
Identifies and/or transforms global function names as follows:
Before:
.. code-block:: c++
void GLOBAL_FUNCTION(int PARAMETER_1, int const CONST_parameter);
After:
.. code-block:: c++
void pre_global_function_post(int PARAMETER_1, int const CONST_parameter);
.. option:: GlobalPointerCase
When defined, the check will ensure global pointer names conform to the
selected casing.
.. option:: GlobalPointerPrefix
When defined, the check will ensure global pointer names will add the
prefixed with the given value (regardless of casing).
.. option:: GlobalPointerSuffix
When defined, the check will ensure global pointer names will add the
suffix with the given value (regardless of casing).
For example using values of:
- GlobalPointerCase of ``lower_case``
- GlobalPointerPrefix of ``pre_``
- GlobalPointerSuffix of ``_post``
Identifies and/or transforms global pointer names as follows:
Before:
.. code-block:: c++
int *GLOBAL3;
After:
.. code-block:: c++
int *pre_global3_post;
.. option:: GlobalVariableCase
When defined, the check will ensure global variable names conform to the
selected casing.
.. option:: GlobalVariablePrefix
When defined, the check will ensure global variable names will add the
prefixed with the given value (regardless of casing).
.. option:: GlobalVariableSuffix
When defined, the check will ensure global variable names will add the
suffix with the given value (regardless of casing).
For example using values of:
- GlobalVariableCase of ``lower_case``
- GlobalVariablePrefix of ``pre_``
- GlobalVariableSuffix of ``_post``
Identifies and/or transforms global variable names as follows:
Before:
.. code-block:: c++
int GLOBAL3;
After:
.. code-block:: c++
int pre_global3_post;
.. option:: IgnoreMainLikeFunctions
When set to `1` functions that have a similar signature to ``main`` or
``wmain`` won't enforce checks on the names of their parameters.
Default value is `0`.
.. option:: InlineNamespaceCase
When defined, the check will ensure inline namespaces names conform to the
selected casing.
.. option:: InlineNamespacePrefix
When defined, the check will ensure inline namespaces names will add the
prefixed with the given value (regardless of casing).
.. option:: InlineNamespaceSuffix
When defined, the check will ensure inline namespaces names will add the
suffix with the given value (regardless of casing).
For example using values of:
- InlineNamespaceCase of ``lower_case``
- InlineNamespacePrefix of ``pre_``
- InlineNamespaceSuffix of ``_post``
Identifies and/or transforms inline namespaces names as follows:
Before:
.. code-block:: c++
namespace FOO_NS {
inline namespace InlineNamespace {
...
}
} // namespace FOO_NS
After:
.. code-block:: c++
namespace FOO_NS {
inline namespace pre_inlinenamespace_post {
...
}
} // namespace FOO_NS
.. option:: LocalConstantCase
When defined, the check will ensure local constant names conform to the
selected casing.
.. option:: LocalConstantPrefix
When defined, the check will ensure local constant names will add the
prefixed with the given value (regardless of casing).
.. option:: LocalConstantSuffix
When defined, the check will ensure local constant names will add the
suffix with the given value (regardless of casing).
For example using values of:
- LocalConstantCase of ``lower_case``
- LocalConstantPrefix of ``pre_``
- LocalConstantSuffix of ``_post``
Identifies and/or transforms local constant names as follows:
Before:
.. code-block:: c++
void foo() { int const local_Constant = 3; }
After:
.. code-block:: c++
void foo() { int const pre_local_constant_post = 3; }
.. option:: LocalConstantPointerCase
When defined, the check will ensure local constant pointer names conform to the
selected casing.
.. option:: LocalConstantPointerPrefix
When defined, the check will ensure local constant pointer names will add the
prefixed with the given value (regardless of casing).
.. option:: LocalConstantPointerSuffix
When defined, the check will ensure local constant pointer names will add the
suffix with the given value (regardless of casing).
For example using values of:
- LocalConstantPointerCase of ``lower_case``
- LocalConstantPointerPrefix of ``pre_``
- LocalConstantPointerSuffix of ``_post``
Identifies and/or transforms local constant pointer names as follows:
Before:
.. code-block:: c++
void foo() { int const *local_Constant = 3; }
After:
.. code-block:: c++
void foo() { int const *pre_local_constant_post = 3; }
.. option:: LocalPointerCase
When defined, the check will ensure local pointer names conform to the
selected casing.
.. option:: LocalPointerPrefix
When defined, the check will ensure local pointer names will add the
prefixed with the given value (regardless of casing).
.. option:: LocalPointerSuffix
When defined, the check will ensure local pointer names will add the
suffix with the given value (regardless of casing).
For example using values of:
- LocalPointerCase of ``lower_case``
- LocalPointerPrefix of ``pre_``
- LocalPointerSuffix of ``_post``
Identifies and/or transforms local pointer names as follows:
Before:
.. code-block:: c++
void foo() { int *local_Constant; }
After:
.. code-block:: c++
void foo() { int *pre_local_constant_post; }
.. option:: LocalVariableCase
When defined, the check will ensure local variable names conform to the
selected casing.
.. option:: LocalVariablePrefix
When defined, the check will ensure local variable names will add the
prefixed with the given value (regardless of casing).
.. option:: LocalVariableSuffix
When defined, the check will ensure local variable names will add the
suffix with the given value (regardless of casing).
For example using values of:
- LocalVariableCase of ``lower_case``
- LocalVariablePrefix of ``pre_``
- LocalVariableSuffix of ``_post``
Identifies and/or transforms local variable names as follows:
Before:
.. code-block:: c++
void foo() { int local_Constant; }
After:
.. code-block:: c++
void foo() { int pre_local_constant_post; }
.. option:: MacroDefinitionCase
When defined, the check will ensure macro definitions conform to the
selected casing.
.. option:: MacroDefinitionPrefix
When defined, the check will ensure macro definitions will add the
prefixed with the given value (regardless of casing).
.. option:: MacroDefinitionSuffix
When defined, the check will ensure macro definitions will add the
suffix with the given value (regardless of casing).
For example using values of:
- MacroDefinitionCase of ``lower_case``
- MacroDefinitionPrefix of ``pre_``
- MacroDefinitionSuffix of ``_post``
Identifies and/or transforms macro definitions as follows:
Before:
.. code-block:: c
#define MY_MacroDefinition
After:
.. code-block:: c
#define pre_my_macro_definition_post
Note: This will not warn on builtin macros or macros defined on the command line
using the ``-D`` flag.
.. option:: MemberCase
When defined, the check will ensure member names conform to the
selected casing.
.. option:: MemberPrefix
When defined, the check will ensure member names will add the
prefixed with the given value (regardless of casing).
.. option:: MemberSuffix
When defined, the check will ensure member names will add the
suffix with the given value (regardless of casing).
For example using values of:
- MemberCase of ``lower_case``
- MemberPrefix of ``pre_``
- MemberSuffix of ``_post``
Identifies and/or transforms member names as follows:
Before:
.. code-block:: c++
class Foo {
char MY_ConstMember_string[4];
}
After:
.. code-block:: c++
class Foo {
char pre_my_constmember_string_post[4];
}
.. option:: MethodCase
When defined, the check will ensure method names conform to the
selected casing.
.. option:: MethodPrefix
When defined, the check will ensure method names will add the
prefixed with the given value (regardless of casing).
.. option:: MethodSuffix
When defined, the check will ensure method names will add the
suffix with the given value (regardless of casing).
For example using values of:
- MethodCase of ``lower_case``
- MethodPrefix of ``pre_``
- MethodSuffix of ``_post``
Identifies and/or transforms method names as follows:
Before:
.. code-block:: c++
class Foo {
char MY_Method_string();
}
After:
.. code-block:: c++
class Foo {
char pre_my_method_string_post();
}
.. option:: NamespaceCase
When defined, the check will ensure namespace names conform to the
selected casing.
.. option:: NamespacePrefix
When defined, the check will ensure namespace names will add the
prefixed with the given value (regardless of casing).
.. option:: NamespaceSuffix
When defined, the check will ensure namespace names will add the
suffix with the given value (regardless of casing).
For example using values of:
- NamespaceCase of ``lower_case``
- NamespacePrefix of ``pre_``
- NamespaceSuffix of ``_post``
Identifies and/or transforms namespace names as follows:
Before:
.. code-block:: c++
namespace FOO_NS {
...
}
After:
.. code-block:: c++
namespace pre_foo_ns_post {
...
}
.. option:: ParameterCase
When defined, the check will ensure parameter names conform to the
selected casing.
.. option:: ParameterPrefix
When defined, the check will ensure parameter names will add the
prefixed with the given value (regardless of casing).
.. option:: ParameterSuffix
When defined, the check will ensure parameter names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ParameterCase of ``lower_case``
- ParameterPrefix of ``pre_``
- ParameterSuffix of ``_post``
Identifies and/or transforms parameter names as follows:
Before:
.. code-block:: c++
void GLOBAL_FUNCTION(int PARAMETER_1, int const CONST_parameter);
After:
.. code-block:: c++
void GLOBAL_FUNCTION(int pre_parameter_post, int const CONST_parameter);
.. option:: ParameterPackCase
When defined, the check will ensure parameter pack names conform to the
selected casing.
.. option:: ParameterPackPrefix
When defined, the check will ensure parameter pack names will add the
prefixed with the given value (regardless of casing).
.. option:: ParameterPackSuffix
When defined, the check will ensure parameter pack names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ParameterPackCase of ``lower_case``
- ParameterPackPrefix of ``pre_``
- ParameterPackSuffix of ``_post``
Identifies and/or transforms parameter pack names as follows:
Before:
.. code-block:: c++
template <typename... TYPE_parameters> {
void FUNCTION(int... TYPE_parameters);
}
After:
.. code-block:: c++
template <typename... TYPE_parameters> {
void FUNCTION(int... pre_type_parameters_post);
}
.. option:: PointerParameterCase
When defined, the check will ensure pointer parameter names conform to the
selected casing.
.. option:: PointerParameterPrefix
When defined, the check will ensure pointer parameter names will add the
prefixed with the given value (regardless of casing).
.. option:: PointerParameterSuffix
When defined, the check will ensure pointer parameter names will add the
suffix with the given value (regardless of casing).
For example using values of:
- PointerParameterCase of ``lower_case``
- PointerParameterPrefix of ``pre_``
- PointerParameterSuffix of ``_post``
Identifies and/or transforms pointer parameter names as follows:
Before:
.. code-block:: c++
void FUNCTION(int *PARAMETER);
After:
.. code-block:: c++
void FUNCTION(int *pre_parameter_post);
.. option:: PrivateMemberCase
When defined, the check will ensure private member names conform to the
selected casing.
.. option:: PrivateMemberPrefix
When defined, the check will ensure private member names will add the
prefixed with the given value (regardless of casing).
.. option:: PrivateMemberSuffix
When defined, the check will ensure private member names will add the
suffix with the given value (regardless of casing).
For example using values of:
- PrivateMemberCase of ``lower_case``
- PrivateMemberPrefix of ``pre_``
- PrivateMemberSuffix of ``_post``
Identifies and/or transforms private member names as follows:
Before:
.. code-block:: c++
class Foo {
private:
int Member_Variable;
}
After:
.. code-block:: c++
class Foo {
private:
int pre_member_variable_post;
}
.. option:: PrivateMethodCase
When defined, the check will ensure private method names conform to the
selected casing.
.. option:: PrivateMethodPrefix
When defined, the check will ensure private method names will add the
prefixed with the given value (regardless of casing).
.. option:: PrivateMethodSuffix
When defined, the check will ensure private method names will add the
suffix with the given value (regardless of casing).
For example using values of:
- PrivateMethodCase of ``lower_case``
- PrivateMethodPrefix of ``pre_``
- PrivateMethodSuffix of ``_post``
Identifies and/or transforms private method names as follows:
Before:
.. code-block:: c++
class Foo {
private:
int Member_Method();
}
After:
.. code-block:: c++
class Foo {
private:
int pre_member_method_post();
}
.. option:: ProtectedMemberCase
When defined, the check will ensure protected member names conform to the
selected casing.
.. option:: ProtectedMemberPrefix
When defined, the check will ensure protected member names will add the
prefixed with the given value (regardless of casing).
.. option:: ProtectedMemberSuffix
When defined, the check will ensure protected member names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ProtectedMemberCase of ``lower_case``
- ProtectedMemberPrefix of ``pre_``
- ProtectedMemberSuffix of ``_post``
Identifies and/or transforms protected member names as follows:
Before:
.. code-block:: c++
class Foo {
protected:
int Member_Variable;
}
After:
.. code-block:: c++
class Foo {
protected:
int pre_member_variable_post;
}
.. option:: ProtectedMethodCase
When defined, the check will ensure protect method names conform to the
selected casing.
.. option:: ProtectedMethodPrefix
When defined, the check will ensure protect method names will add the
prefixed with the given value (regardless of casing).
.. option:: ProtectedMethodSuffix
When defined, the check will ensure protect method names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ProtectedMethodCase of ``lower_case``
- ProtectedMethodPrefix of ``pre_``
- ProtectedMethodSuffix of ``_post``
Identifies and/or transforms protect method names as follows:
Before:
.. code-block:: c++
class Foo {
protected:
int Member_Method();
}
After:
.. code-block:: c++
class Foo {
protected:
int pre_member_method_post();
}
.. option:: PublicMemberCase
When defined, the check will ensure public member names conform to the
selected casing.
.. option:: PublicMemberPrefix
When defined, the check will ensure public member names will add the
prefixed with the given value (regardless of casing).
.. option:: PublicMemberSuffix
When defined, the check will ensure public member names will add the
suffix with the given value (regardless of casing).
For example using values of:
- PublicMemberCase of ``lower_case``
- PublicMemberPrefix of ``pre_``
- PublicMemberSuffix of ``_post``
Identifies and/or transforms public member names as follows:
Before:
.. code-block:: c++
class Foo {
public:
int Member_Variable;
}
After:
.. code-block:: c++
class Foo {
public:
int pre_member_variable_post;
}
.. option:: PublicMethodCase
When defined, the check will ensure public method names conform to the
selected casing.
.. option:: PublicMethodPrefix
When defined, the check will ensure public method names will add the
prefixed with the given value (regardless of casing).
.. option:: PublicMethodSuffix
When defined, the check will ensure public method names will add the
suffix with the given value (regardless of casing).
For example using values of:
- PublicMethodCase of ``lower_case``
- PublicMethodPrefix of ``pre_``
- PublicMethodSuffix of ``_post``
Identifies and/or transforms public method names as follows:
Before:
.. code-block:: c++
class Foo {
public:
int Member_Method();
}
After:
.. code-block:: c++
class Foo {
public:
int pre_member_method_post();
}
.. option:: StaticConstantCase
When defined, the check will ensure static constant names conform to the
selected casing.
.. option:: StaticConstantPrefix
When defined, the check will ensure static constant names will add the
prefixed with the given value (regardless of casing).
.. option:: StaticConstantSuffix
When defined, the check will ensure static constant names will add the
suffix with the given value (regardless of casing).
For example using values of:
- StaticConstantCase of ``lower_case``
- StaticConstantPrefix of ``pre_``
- StaticConstantSuffix of ``_post``
Identifies and/or transforms static constant names as follows:
Before:
.. code-block:: c++
static unsigned const MyConstStatic_array[] = {1, 2, 3};
After:
.. code-block:: c++
static unsigned const pre_myconststatic_array_post[] = {1, 2, 3};
.. option:: StaticVariableCase
When defined, the check will ensure static variable names conform to the
selected casing.
.. option:: StaticVariablePrefix
When defined, the check will ensure static variable names will add the
prefixed with the given value (regardless of casing).
.. option:: StaticVariableSuffix
When defined, the check will ensure static variable names will add the
suffix with the given value (regardless of casing).
For example using values of:
- StaticVariableCase of ``lower_case``
- StaticVariablePrefix of ``pre_``
- StaticVariableSuffix of ``_post``
Identifies and/or transforms static variable names as follows:
Before:
.. code-block:: c++
static unsigned MyStatic_array[] = {1, 2, 3};
After:
.. code-block:: c++
static unsigned pre_mystatic_array_post[] = {1, 2, 3};
.. option:: StructCase
When defined, the check will ensure struct names conform to the
selected casing.
.. option:: StructPrefix
When defined, the check will ensure struct names will add the
prefixed with the given value (regardless of casing).
.. option:: StructSuffix
When defined, the check will ensure struct names will add the
suffix with the given value (regardless of casing).
For example using values of:
- StructCase of ``lower_case``
- StructPrefix of ``pre_``
- StructSuffix of ``_post``
Identifies and/or transforms struct names as follows:
Before:
.. code-block:: c++
struct FOO {
FOO();
~FOO();
};
After:
.. code-block:: c++
struct pre_foo_post {
pre_foo_post();
~pre_foo_post();
};
.. option:: TemplateParameterCase
When defined, the check will ensure template parameter names conform to the
selected casing.
.. option:: TemplateParameterPrefix
When defined, the check will ensure template parameter names will add the
prefixed with the given value (regardless of casing).
.. option:: TemplateParameterSuffix
When defined, the check will ensure template parameter names will add the
suffix with the given value (regardless of casing).
For example using values of:
- TemplateParameterCase of ``lower_case``
- TemplateParameterPrefix of ``pre_``
- TemplateParameterSuffix of ``_post``
Identifies and/or transforms template parameter names as follows:
Before:
.. code-block:: c++
template <typename T> class Foo {};
After:
.. code-block:: c++
template <typename pre_t_post> class Foo {};
.. option:: TemplateTemplateParameterCase
When defined, the check will ensure template template parameter names conform to the
selected casing.
.. option:: TemplateTemplateParameterPrefix
When defined, the check will ensure template template parameter names will add the
prefixed with the given value (regardless of casing).
.. option:: TemplateTemplateParameterSuffix
When defined, the check will ensure template template parameter names will add the
suffix with the given value (regardless of casing).
For example using values of:
- TemplateTemplateParameterCase of ``lower_case``
- TemplateTemplateParameterPrefix of ``pre_``
- TemplateTemplateParameterSuffix of ``_post``
Identifies and/or transforms template template parameter names as follows:
Before:
.. code-block:: c++
template <template <typename> class TPL_parameter, int COUNT_params,
typename... TYPE_parameters>
After:
.. code-block:: c++
template <template <typename> class pre_tpl_parameter_post, int COUNT_params,
typename... TYPE_parameters>
.. option:: TypeAliasCase
When defined, the check will ensure type alias names conform to the
selected casing.
.. option:: TypeAliasPrefix
When defined, the check will ensure type alias names will add the
prefixed with the given value (regardless of casing).
.. option:: TypeAliasSuffix
When defined, the check will ensure type alias names will add the
suffix with the given value (regardless of casing).
For example using values of:
- TypeAliasCase of ``lower_case``
- TypeAliasPrefix of ``pre_``
- TypeAliasSuffix of ``_post``
Identifies and/or transforms type alias names as follows:
Before:
.. code-block:: c++
using MY_STRUCT_TYPE = my_structure;
After:
.. code-block:: c++
using pre_my_struct_type_post = my_structure;
.. option:: TypedefCase
When defined, the check will ensure typedef names conform to the
selected casing.
.. option:: TypedefPrefix
When defined, the check will ensure typedef names will add the
prefixed with the given value (regardless of casing).
.. option:: TypedefSuffix
When defined, the check will ensure typedef names will add the
suffix with the given value (regardless of casing).
For example using values of:
- TypedefCase of ``lower_case``
- TypedefPrefix of ``pre_``
- TypedefSuffix of ``_post``
Identifies and/or transforms typedef names as follows:
Before:
.. code-block:: c++
typedef int MYINT;
After:
.. code-block:: c++
typedef int pre_myint_post;
.. option:: TypeTemplateParameterCase
When defined, the check will ensure type template parameter names conform to the
selected casing.
.. option:: TypeTemplateParameterPrefix
When defined, the check will ensure type template parameter names will add the
prefixed with the given value (regardless of casing).
.. option:: TypeTemplateParameterSuffix
When defined, the check will ensure type template parameter names will add the
suffix with the given value (regardless of casing).
For example using values of:
- TypeTemplateParameterCase of ``lower_case``
- TypeTemplateParameterPrefix of ``pre_``
- TypeTemplateParameterSuffix of ``_post``
Identifies and/or transforms type template parameter names as follows:
Before:
.. code-block:: c++
template <template <typename> class TPL_parameter, int COUNT_params,
typename... TYPE_parameters>
After:
.. code-block:: c++
template <template <typename> class TPL_parameter, int COUNT_params,
typename... pre_type_parameters_post>
.. option:: UnionCase
When defined, the check will ensure union names conform to the
selected casing.
.. option:: UnionPrefix
When defined, the check will ensure union names will add the
prefixed with the given value (regardless of casing).
.. option:: UnionSuffix
When defined, the check will ensure union names will add the
suffix with the given value (regardless of casing).
For example using values of:
- UnionCase of ``lower_case``
- UnionPrefix of ``pre_``
- UnionSuffix of ``_post``
Identifies and/or transforms union names as follows:
Before:
.. code-block:: c++
union FOO {
int a;
char b;
};
After:
.. code-block:: c++
union pre_foo_post {
int a;
char b;
};
.. option:: ValueTemplateParameterCase
When defined, the check will ensure value template parameter names conform to the
selected casing.
.. option:: ValueTemplateParameterPrefix
When defined, the check will ensure value template parameter names will add the
prefixed with the given value (regardless of casing).
.. option:: ValueTemplateParameterSuffix
When defined, the check will ensure value template parameter names will add the
suffix with the given value (regardless of casing).
For example using values of:
- ValueTemplateParameterCase of ``lower_case``
- ValueTemplateParameterPrefix of ``pre_``
- ValueTemplateParameterSuffix of ``_post``
Identifies and/or transforms value template parameter names as follows:
Before:
.. code-block:: c++
template <template <typename> class TPL_parameter, int COUNT_params,
typename... TYPE_parameters>
After:
.. code-block:: c++
template <template <typename> class TPL_parameter, int pre_count_params_post,
typename... TYPE_parameters>
.. option:: VariableCase
When defined, the check will ensure variable names conform to the
selected casing.
.. option:: VariablePrefix
When defined, the check will ensure variable names will add the
prefixed with the given value (regardless of casing).
.. option:: VariableSuffix
When defined, the check will ensure variable names will add the
suffix with the given value (regardless of casing).
For example using values of:
- VariableCase of ``lower_case``
- VariablePrefix of ``pre_``
- VariableSuffix of ``_post``
Identifies and/or transforms variable names as follows:
Before:
.. code-block:: c++
unsigned MyVariable;
After:
.. code-block:: c++
unsigned pre_myvariable_post;
.. option:: VirtualMethodCase
When defined, the check will ensure virtual method names conform to the
selected casing.
.. option:: VirtualMethodPrefix
When defined, the check will ensure virtual method names will add the
prefixed with the given value (regardless of casing).
.. option:: VirtualMethodSuffix
When defined, the check will ensure virtual method names will add the
suffix with the given value (regardless of casing).
For example using values of:
- VirtualMethodCase of ``lower_case``
- VirtualMethodPrefix of ``pre_``
- VirtualMethodSuffix of ``_post``
Identifies and/or transforms virtual method names as follows:
Before:
.. code-block:: c++
class Foo {
public:
virtual int MemberFunction();
}
After:
.. code-block:: c++
class Foo {
public:
virtual int pre_member_function_post();
}
|