Minimal SQLite key-value store for OCaml
0
fork

Configure Feed

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

Support allowed_words in E331 (redundant prefix); document in man page

E331 now checks ctx.config.allowed_words before flagging a name,
matching the pattern used by E300. This lets projects exempt specific
names like create_table via .merlint:

allowed_words: [create_table]

Updated the man page to document allowed_words and acronyms.

+1 -5
+1 -5
.merlint
··· 1 - rules: 2 - - files: ocaml-sqlite/lib/sqlite.ml 3 - exclude: [E331] 4 - - files: ocaml-sqlite/lib/sqlite.mli 5 - exclude: [E331] 1 + allowed_words: [create_table]