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
The indentation feels off in the following example:
let rec equal_list : 'a. ('a, 't) gexpr marked list -> ('a, 't) gexpr marked list -> bool = fun es1 es2 -> try List.for_all2 equal es1 es2 with Invalid_argument _ -> false and equal : 'a. ('a, 't) gexpr marked -> ('a, 't) gexpr marked -> bool = fun (type a) (e1 : (a, 't) gexpr marked) (e2 : (a, 't) gexpr marked) -> match Marked.unmark e1, Marked.unmark e2 with …
equal_list
fun
profile = default margin = 80 exp-grouping = preserve break-fun-decl = fit-or-vertical wrap-comments parse-docstrings version=0.24.1 cases-exp-indent=2 indicate-multiline-delimiters=no parens-tuple=multi-line-only space-around-lists=false break-infix-before-func break-infix= fit-or-vertical
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The indentation feels off in the following example:
equal_list
is hugefun
is indented 1 and its body 2, it feels weird to have width-1 increments. Why not 2 and 4, or, better, 2 and 2 ? I'd even be ok with 0 and 2fun
is indented 2 and its body 3, which is one more than for the first function and doesn't feel consistentThe text was updated successfully, but these errors were encountered: