The problem is that the ISBN number is cut in a way that provoques overful. Let's see the mwe:
\documentclass[]{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{hyperref}
\usepackage{csquotes}
\usepackage[
backend=biber,
hyperref=true,
url=false,
eprint=false,
style=numeric-comp,
bibencoding=utf8,
sorting=none,
%citereset=chapter,
maxbibnames=10,
]{biblatex}
\begin{filecontents}{mwe.bib}
@InProceedings{iwann2017,
author="Gal{\'a}n-Prado, Fabio
and Rossell{\'o}, Josep L.",
editor="Rojas, Ignacio
and Joya, Gonzalo
and Catala, Andreu",
author+an={1=highlight},
title="Smart Hardware Implementation of Spiking Neural Networks",
booktitle="Advances in Computational Intelligence",
year="2017",
publisher="Springer International Publishing",
address="Cham",
pages="560--568",
abstract="During last years a lot of attention have been focused to the hardware implementation of Artificial Neural Networks (ANN) to efficiently exploit the inherent parallelism associated to these systems. From the different types of ANN, the Spiking Neural Networks (SNN) arise as a promising bio-inspired model that is able to emulate the expected neural behavior with a high confidence. Many works are centered in using analog circuitry to reproduce SNN with a high degree of precision, while minimizing the area and the energy costs. Nevertheless, the reliability and flexibility of these systems is lower if compared with digital implementations. In this paper we present a new, low-cost bio-inspired digital neural model for SNN along with an auxiliary Computer Aided Design (CAD) tool for the efficient implementation of high-volume SNN.",
isbn="978-3-319-59153-7"
}
\end{filecontents}
\addbibresource{mwe.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
which yields the following:
I hoped there existed a biblatex counter for ISBN that did like "biburlnumpenalty" does for URLs and DOIs. Anyone knows how to fix it?
Thanks.




biburlnumpenaltyexists, but it only works for URLs (or URL-like fields) and not for ISBNs. What do you want to happen to your ISBN 978-3-319-59153-7? Do you want to break it within the "59153" bit? (Breaking at the hyphen before "59153" would make the line underfull, breaking at the hyphen after makes it overfull)? – moewe Jun 07 '20 at 15:17\usepackage{microtype}could already help you here. You may also want to have a look at https://tex.stackexchange.com/q/442308/35864 for other methods to improve line breaking in the bibliography. – moewe Jun 07 '20 at 15:18