-
The docs recommend using camelCase
> hygen-create currently works best if you provide a CamelCased string to the usename command.
but isn't this actually PascalCase?
Which is recommended?
-
Class names should be PascalCase.
https://github.com/ahlersml/MyCleaningLog/blob/a5dd9f9681b75d6574714080acbd815b366fd39a/app/src/main/java/com/example/mycleaninglog/dto/CleaningTask.kt#L3
-
Any chance ya'll be open to an option that would allow outputting Type names without an `_`? We always renaming types to avoid a lint error, which is admittedly a small thing, but would be nice to hav…
-
The correct term for the app host project is "app host project". When used in a situation that dictates PascalCase, e.g. project names, this becomes "AppHost". Title case would be "App host". We aren'…
-
Popcorn Hack 1: Python (pascal Case Variable)
MyFirstVariable = "This is a PascalCase variable"
print(MyFirstVariable)
Popcorn hack 2: Camel Case Variable
mySecondVariable = 42
print(mySeco…
-
**Is your feature request related to a problem? Please describe.**
The provided case-checking rules are currently (before v3.25) limited to:
- `lower` (which allows underscores too => _snake_case_),…
-
There currently is no consistency in the casing of property names in our JSON resources and JSON output. The project was built piecemeal, but it's perhaps time to clean it up with a consistent use of …
-
## Description
iconify's `getIcon` uses `validateIconName` which enforce some validation for an icon's name.
One validation is that a name must be split with `-` which is often not the case wit…
-
### Background and motivation
When the JSON console log formatter is used properties are formatted with PascalCase
```
{"EventId":15,"LogLevel":"Warning","Category":"Microsoft.AspNetCore.Hosting.Diag…
-
We are using Schemars for schema generation in our project and it has been great!
I have a particular struct that is used to both deserialize from PascalCase XML and serialize to snake_case JSON. W…