[Tex/LaTex] Spacing between multiple lines of an item in itemize or enumerate

#enumerateenumitemitemizeline-spacing

\documentclass[11pt]{article}
\usepackage{enumitem}
\begin{document}
Some text here.
\begin{enumerate}
\item a
\item b
\item c
\end{enumerate}
Some more text.
\end{document}

Assume item a contains multiple lines of text. How can I increase the spacing between each line in item a ?

Best Answer

The before key allows to change the \baselineskip:

\documentclass[11pt]{article}
\usepackage{enumitem}
\usepackage{setspace}
\begin{document}
Some text here.
\begin{enumerate}[before=\setlength{\baselineskip}{20pt},itemsep=-10pt]
\item a more text more text more text more text more text more text more text more text more text more text more text more text more text more text 
\item b
\item c
\end{enumerate}
Some more text.
\end{document}