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
Describe the bug The output is not stable and changes between two states on every Ctrl-S (auto-format).
Input file
class Sound { public static function init() { wavesChannel = hxd.Res.waves.play( /* loop= */ true, /* volume= */ 0.0, /* channelGroup= */ null, /* soundGroup= */ ambianceSounds ); } }
Broken output State 1:
wavesChannel = hxd.Res.waves.play( /* loop= */ true, /* volume= */ 0.0, /* channelGroup= */ null, /* soundGroup= */ ambianceSounds );
State 2:
wavesChannel = hxd.Res.waves.play(/* loop= */ true, /* volume= */ 0.0, /* channelGroup= */ null, /* soundGroup= */ ambianceSounds);
Expected output A fixed output and not oscillating.
Optional: hxformat.json
{ "wrapping": { "maxLineLength": 130, "callParameter": { "rules": [ { "conditions": [ { "cond": "exceedsMaxLineLength" } ], "type": "onePerLine" } ] } } }
Bonus question: how do I get the comments to appear before each parameter, like my original input?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The output is not stable and changes between two states on every Ctrl-S (auto-format).
Input file
Broken output
State 1:
State 2:
Expected output
A fixed output and not oscillating.
Optional: hxformat.json
Bonus question: how do I get the comments to appear before each parameter, like my original input?
The text was updated successfully, but these errors were encountered: