Convert your identifier name by naming convention.
Launch VS Code Quick Open (Ctrl/Cmd+P), paste the following command, and press enter.
ext install naming-convention
naming-convention.camel-case
: Convert to a string with the separators denoted by having the next letter capitalised.naming-convention.pascal-case
: Convert to a string denoted in the same fashion as camelCase, but with the first letter also capitalised.naming-convention.constant-case
: Convert to an upper case, underscore separated string.naming-convention.snake-case
: Convert to a lower case, underscore separated string.naming-convention.kebab-case
: Convert to a lower case, hyphens separated string.
Create an issue & welcome to PR.