You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The strings have a mix of PascalCase, lower case, and Snakey_Pascal_Case. This is ugly and makes it difficult to write toml files by hand.
Let's make the string value casing consistent. I vote for PascalCase or UPPER_SNAKE_CASE. Using lower snake_case for fields and values seems wrong imo.
Of course, strings like bot names and paths should not adhere to this casing convention, but all the framework constants should.
The text was updated successfully, but these errors were encountered:
This always bothered me in v4, and it is here again in v5 (at least it is only the values and not also the fields this time)
The string values in the toml files have an inconsistent casing. Consider the following snippet from VirxEC/python-interface/test/rlbot.toml:
The strings have a mix of PascalCase, lower case, and Snakey_Pascal_Case. This is ugly and makes it difficult to write toml files by hand.
Let's make the string value casing consistent. I vote for PascalCase or UPPER_SNAKE_CASE. Using lower snake_case for fields and values seems wrong imo.
Of course, strings like bot names and paths should not adhere to this casing convention, but all the framework constants should.
The text was updated successfully, but these errors were encountered: