Skip to content

Instantly share code, notes, and snippets.

@nyrahul
Created April 8, 2019 03:58
Show Gist options
  • Save nyrahul/e1dc20a9e6d07639f7cff075e3928de7 to your computer and use it in GitHub Desktop.
Save nyrahul/e1dc20a9e6d07639f7cff075e3928de7 to your computer and use it in GitHub Desktop.
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