Since I'm a bit of a freak, I would like to enumerate the entries in my bibliography starting with [0] (rather than with [1]). Here is the relevant excerpt from my file:
\documentclass[10pt,conference]{IEEEtran}
\usepackage[backend=biber,bibstyle=ieee,citestyle=numeric-comp,sortcites=true,maxnames=99]{biblatex}
\renewcommand*{\bibfont}{\footnotesize}
\renewcommand*{\biblabelsep}{\labelsep}
\addbibresource{whatever.bib}
....
\begin{document}
...
\printbibliography
...
\end{document}
A solution Change bibliography starting number is constructed explicitly for article.cls, but there is none for ieeetran. Any help?

...as they don't add anything (except for an error), replacewhatever.bibwithbiblatex-examples.biband actually\citea few example entries. This makes it easier for people like me to get started: I always test my suggestions in an example document. Usually I can just copy the MWE and am good to go, but here I had to modify stuff before I could. – moewe Aug 22 '18 at 03:59IEEEtranis a publisher class. As such it probably only makes sense to use it when publishing with the IEEE, in that case you should normally be using the BibTeX.bststyles of the IEEEtran package (or manualthebibliographyif you like that sort of thing) and notbiblatex. Most publishers can not handlebiblatexsubmissions. If you are not publishing with the IEEE you may want to consider using a simpler document class altogether. – moewe Aug 22 '18 at 11:00thebibliography, which is not used by and (basically) incompatible withbiblatex. The document class could theoretically play a role here, but was not the major issue. – moewe Aug 22 '18 at 11:02