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
I often find myself editing Dialyzer's output to make the structure clearer. For example, I might edit this call description:
InfoToml.CheckItem.check_values_h( _inp_map :: %{atom() | binary() => %{atom() | binary() => binary() | map()}}, _check_fn :: (_, _ -> [any()]), [] )
into something like this:
InfoToml.CheckItem.check_values_h( _inp_map :: %{ atom() | binary() => %{ atom() | binary() => binary() | map() } }, _check_fn :: (_, _ -> [any()]), [] )
So, I'd like to suggest a --pretty mode that would do this automagically.
--pretty
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I often find myself editing Dialyzer's output to make the structure clearer.
For example, I might edit this call description:
into something like this:
So, I'd like to suggest a
--pretty
mode that would do this automagically.The text was updated successfully, but these errors were encountered: