static void writeTimestamp(Writer writer, long timestampMs) throws IOException {
writer.write(Long.toString(timestampMs / 1000L));
writer.write(".");
Writes a decimal point.
The timestamp is an int64 (milliseconds since epoch, i.e. 1970-01-01 00:00:00 UTC, excluding leap seconds), represented as required by Go's [ParseInt()](https://golang.org/pkg/strconv/#ParseInt) function.
error while linting: text format parsing error in line 17: expected integer as timestamp, got "1739889638.000"