Rename UPPER_CAMEL_CASE to UPPER_SNAKE_CASE in Coding Style

pull/21833/head
Michael Kohler 2019-10-06 13:08:46 +02:00
parent 1e8a338e66
commit 8eb07197cc
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ General Style
- UpperCamelCase for class and type names
- lowerCamelCase for functions and variables.
- Single line ternary operators are fine.
- UPPER_CAMEL_CASE for constants
- UPPER_SNAKE_CASE for constants
- Single quotes for strings by default, for consistency with most JavaScript styles:
```javascript