You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We don't use blank lines inside method bodies because they reduce code readability: https://www.yegor256.com/2014/11/03/empty-line-code-smell.html
2
+
3
+
We don't use comments inside method bodies, because inline and between-line comments negatively affect readability.
4
+
5
+
We avoid compound variable names, as they make the code harder to read; we prefer single-word nouns for variable names: https://www.yegor256.com/2015/01/12/compound-name-is-code-smell.html
6
+
7
+
We design our tests to contain only one assertion.
8
+
9
+
Each test ends with an assertion—there is no code after it.
0 commit comments