We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
On big images (1000x1000) there are no needs to have fractional part in paths. But SVGO allow only 1 digit minimum after dot.
I did a quick test with regexp:
glyph.d = glyph.d.replace( /\d+\.\d+/g, function (match) { return Math.round(match) + ''; } );
~20% profit.