I like my code to look like this:
\documentclass{article}
\begin{document}
\begin{enumerate}
\item test text
\begin{enumerate}
\item 1
\item 2
\item 3
\item 4
\item 5
\end{enumerate}
\end{enumerate}
\end{document}
For the sake of readability I like to put a blank line before a new environment starts. In the particular case I'm considering, the blank line adds some vertical space between the item from the first level enumerate and the first item from the second level enumerate.
So my question is: is there a best practice to format code related to blank lines before environments start? Should I avoid it? Should I comment out the blank line?
Clarification:
I'm talking about the vertical space between "test text" and "1". But, I'm not asking for a way to remove the extra space added by the blank like, I already know how to do that. My reasoning is the following:
Since adding a blank like before a new enumerate adds vertical space, it means that that blank line is meaningful for TeX. Since it is meaningful for TeX, is it OK to use it for the mere purpose of formatting code or should I avoid it?

%at the start of an empty line). – alexis Dec 16 '13 at 22:30