Open marcusreese opened 7 years ago
hi @marcusreese By the Angular styleguide, "Do tolerate existing const variables that are spelled in UPPER_SNAKE_CASE..." I think it's more readable to distinguish when skimming the code. Also, the ngrx-example app uses the same convention - so i would like to somehow follow this one as well.
should switch to the new createAction with recommendations for action types.
Here is a snippet from your guide and then a snippet from Angular's guide. Angular seems to "prefer" lowerCamelCase over UPPER_CASE.
ngrx-styleguide:
https://angular.io/guide/styleguide#constants says:
Also, there is an interesting comment at https://github.com/reactjs/redux/issues/1097 from the creator of Redux:
Would you agree, based on this information, that we should use lowerCamelCase for our exported action variables?