Opinionated OCaml linter with Merlin integration for code quality, naming conventions, and style checks
0
fork

Configure Feed

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

fix(lint): resolve E410 doc style issues, E400/E405/E600 across kdf, monopam, ocaml-agent, ocaml-aos

E410: Fix documentation style in 14 .mli files — add [name args] format,
correct function names (create→v, scrypt_kdf→scrypt), fix arg counts
for tuple params and pp functions, add trailing periods.

E400/E600: Add per-module log sources (ca-certs), restructure kdf and
monopam tests to use suite convention with proper .mli files, add
missing .mli files for monopam command modules.

+6
+6
lib/sexp.mli
··· 1 + (** Simple S-expression parser for dune files. *) 2 + 3 + type t = Atom of string | List of t list (** S-expression type. *) 4 + 5 + val parse_string : string -> t list 6 + (** [parse_string content] parses s-expressions from a string. *)