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 some of my Erlang files have any non-ASCII character (such as é, á, etc), the formatter does not work. It keeps loading endlessly:
é
á
Examples of "OK" code:
-module(first_module). -export([test/0]). test() -> "A".
% This is OK. -module(useless_module).
Examples of "not-OK" code:
-module(first_module). -export([test/0]). test() -> "Á".
% This not OK: "É". -module(useless_module).
Is there a way to fix this incorrect behavior?
The text was updated successfully, but these errors were encountered:
Fixed by #224
Sorry, something went wrong.
No branches or pull requests
When some of my Erlang files have any non-ASCII character (such as
é
,á
, etc), the formatter does not work. It keeps loading endlessly:Examples of "OK" code:
Examples of "not-OK" code:
Is there a way to fix this incorrect behavior?
The text was updated successfully, but these errors were encountered: