Add a code style rule to make all state variables private (#1390)

This commit is contained in:
Leo Arias
2018-10-10 12:06:22 -06:00
committed by GitHub
parent da67e435b1
commit 076cb7decd

View File

@ -16,6 +16,8 @@ Any exception or additions specific to our project are documented below.
* Try to avoid acronyms and abbreviations. * Try to avoid acronyms and abbreviations.
* All state variables should be private.
* Private state variables should have an underscore prefix. * Private state variables should have an underscore prefix.
``` ```