Created
April 8, 2019 03:58
-
-
Save nyrahul/e1dc20a9e6d07639f7cff075e3928de7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Checks: '-*,readability-identifier-naming' | |
CheckOptions: | |
- { key: readability-identifier-naming.NamespaceCase, value: lower_case } | |
- { key: readability-identifier-naming.ClassCase, value: CamelCase } | |
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m_ } | |
- { key: readability-identifier-naming.StructCase, value: CamelCase } | |
- { key: readability-identifier-naming.FunctionCase, value: CamelCase } | |
- { key: readability-identifier-naming.VariableCase, value: camelBack } | |
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE } | |
- { key: readability-identifier-naming.GlobalVariableCase, value: camelBack } | |
- { key: readability-identifier-naming.GlobalVariablePrefix, value: g_ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment