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 line has 140 characters, but wrapping never seems to kick in no matter how low the max line length is.
Input file
class PlayState extends FlxState { override public function create() { var text = new FlxBitmapText(FlxBitmapFont.fromMonospace("assets/tiny-font.png", FlxBitmapFont.DEFAULT_CHARS, FlxPoint.get(8, 8))); } }
Optional: hxformat.json
{ "wrapping": { "maxLineLength": 100 } }
The text was updated successfully, but these errors were encountered:
added new wrapping rule condition type exceedsMaxLineLength, fixes H…
exceedsMaxLineLength
3dd3245
…axeCheckstyle#572
feeb6a9
Hm, this line still doesn't seem to get wrapped (again with max 100):
class PlayState extends FlxState { override public function update(elapsed:Float) { if ((sprite.velocity.x > 0 && sprite.x >= FlxG.width - sprite.width) || (sprite.velocity.x < 0 && sprite.x <= 0)) { sprite.velocity.x *= -1; } } }
Sorry, something went wrong.
fixed maxLineLength wrapping of OpBool chains, fixes HaxeCheckstyle#572
d98523e
fb3a10a
No branches or pull requests
Describe the bug
The line has 140 characters, but wrapping never seems to kick in no matter how low the max line length is.
Input file
Optional: hxformat.json
The text was updated successfully, but these errors were encountered: