Installs pre-commit hooks for OCaml projects that run dune fmt automatically
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(lint): remove redundant function prefixes (E331)

Rename make_commit_row -> commit_row, get_static_entry -> static_entry,
make_h2_direct_response -> h2_direct_response, make_h2_conn_response ->
h2_conn_response, make_h2_alpn_response -> h2_alpn_response.

+2 -2
+2 -2
bin/main.ml
··· 243 243 244 244 (* Shared: find AI commits across dirs and display a unified table. 245 245 Returns [(affected_dirs, total_commits, repos_with_issues)]. *) 246 - let make_commit_row subject_max d first (c : Precommit.ai_commit) = 246 + let commit_row subject_max d first (c : Precommit.ai_commit) = 247 247 let project_cell = 248 248 if !first then begin 249 249 first := false; ··· 272 272 total_commits := !total_commits + List.length commits; 273 273 affected_dirs := d :: !affected_dirs; 274 274 let first = ref true in 275 - let rows = List.map (make_commit_row subject_max d first) commits in 275 + let rows = List.map (commit_row subject_max d first) commits in 276 276 all_rows := !all_rows @ rows 277 277 end) 278 278 dirs;