I created a module like this and auto formatted the code by highlighting everything and pressing `==` I expect all the list of strings to be aligned. However when nested like this they aren't. ```reasonml module MyModule = { let result = [ "a", "b", "c" ] } ```