Update section on naming conventions for acronyms

- Fix array name starting with a capital
- Add alternative good example
This commit is contained in:
Anton Vasyunin
2017-08-18 00:05:21 +07:00
parent 344c25d83a
commit 855426b3db

View File

@@ -2928,11 +2928,16 @@ Other Style Guides
// ...
];
// also good
const httpRequests = [
// ...
];
// best
import TextMessageContainer from './containers/TextMessageContainer';
// best
const Requests = [
const requests = [
// ...
];
```