How can I disable uppercase letters
When using some words, Rider uses UPPERCASE letters at the head to tail.
Here exists a `maxTurnCount` argument, Rider introduce it to `MAXTurnCount`.

But I want it to `MaxTurnCount`.
I thought, `MAX` exists in some DotSettings file as abbreviation, so I grepped ABBREVIATION in whole DotSettings in my filesystem. But there is no `MAX` found.
How can I use `MaxTurnCount` instead of `MAXTurnCount`?
Thanks,
Please sign in to leave a comment.
Hi,
Could you please collect all the .DotSettings files:
- *Personal layer*: ```.DotSettings.user``` file near your sln (if any)
- *Team-shared layer*: ```.DotSettings``` file near your sln (if any)
- *Global settings layer*: Use "Help -> Diagnostic tools -> Special Files and Folders -> R# Global Settings" to locate ```GlobalSettingsStorage.DotSettings``` file
Attach the resulting files to a new support request. Thank you in advance!
Hi, thank you for your response.
I tried it. I hope it's done well... My operations are below.
I didn't know how to attach the file, so I'll paste it into the body, sorry.
Thanks,
-------------------------------------------------------------------------
↓ personal
↓ team-shared
↓ GlobalSettingsStorage (it is so huge)
Hi,
It seems I found the solution for this case.
1. from the personal layer .DotSettings file remove the line bellow and save the file.
2. open settings page `File | Settings | Languages & Frameworks | Unity Engine` and set the necessary prefix
3. Save it, for example, to the personal layer and check if the issue persists.
Please let me know about the results.
K.R.
Sofia
Hi, thank you for your response.
It can work certainly. But I'm afraid to set the prefix for each time when quick fix, because MaxTurn prefix setting may not be good for other variable.
Thanks,
Hi,
Indeed, I did not get the case right.
If you remove the line from your user dotsettings file
then configure the naming rule on "Preferences | Editor | Code Style | C#" -> Naming tab to use UpperCamelCase for Parameters, can it help you?
On my side this configuration works the following way.
K.R.
Sofia