Merge pull request #3525 from MichaelKohler/fix-constant-name

Rename UPPER_CAMEL_CASE to UPPER_SNAKE_CASE in Coding Style
This commit is contained in:
Travis Ralston 2019-10-06 09:44:16 -06:00 committed by GitHub
commit b091cf1f6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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