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
As reported by @wighawag:
This
game. // CONFIG config.resolveWindow = 1000; config.defaultDelay = 0;
gets re-written as:
game.config.resolveWindow = 1000; // CONFIG config.defaultDelay = 0;
This seems like a PITA to fix, and I'm not even sure what the "correct" result should be.
The text was updated successfully, but these errors were encountered:
I believe this should be formatted as
// CONFIG game.config.resolveWindow = 1000; config.defaultDelay = 0;
Will give this a look.
Sorry, something went wrong.
Agree, that's what prettier does for the same code in javascript.
No branches or pull requests
As reported by @wighawag:
This
gets re-written as:
This seems like a PITA to fix, and I'm not even sure what the "correct" result should be.
The text was updated successfully, but these errors were encountered: