Closed tienlocnguyen closed 2 years ago
When QML element contain a list which marked with [], the next close bracket will be shift to 1 level For example: This is wrong
ComboBox { width: 200 model: ["500000", "1000000"] } // -> shifted to 1 level
But after comment the list, it's correct
ComboBox { width: 200 // model: ["500000", "1000000"] } // -> Correct
Thanks for sharing this error, I will work on fixing it.
But this formatter is still under development.
When QML element contain a list which marked with [], the next close bracket will be shift to 1 level For example: This is wrong
But after comment the list, it's correct