Document UseUpperSnakeCaseNamingConvention

See #31
This commit is contained in:
Shay Rojansky
2021-11-10 11:04:30 +01:00
parent 4fab36f59b
commit 942d8516a9

View File

@@ -46,6 +46,7 @@ SELECT c.id, c.full_name
* UseLowerCaseNamingConvention: `FullName` becomes `fullname`
* UseCamelCaseNamingConvention: `FullName` becomes `fullName`
* UseUpperCaseNamingConvention: `FullName` becomes `FULLNAME`
* UseUpperSnakeCaseNamingConvention: `FullName` becomes `FULL_NAME`
Have another naming convention in mind? Open an issue or even submit a PR - it's pretty easy to do!