Random order of the TOML configuration for new posts

Hi, I’m running Hugo 0.18.1 and every time that i create a new post, the TOML configuration are in random order.

Here is an example.

hugo new t1
hugo new t2
hugo new t3

cat content/t*
+++
draft = true
date = "2017-02-14T22:15:43-02:00"
title = “t1”

+++

+++
date = "2017-02-14T22:16:05-02:00"
title = "t2"
draft = true

+++

+++
date = "2017-02-14T22:22:43-02:00"
title = "t3"
draft = true

+++

This is not a big deal, but it’s very annoying. Is there an fix, please?

Please don’t double post.