We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Thanks for sharing this error, I will work on fixing it.
But this formatter is still under development.
Sorry, something went wrong.
Adjuste based on issue #11
2de2075
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: