Opinionated OCaml linter with Merlin integration for code quality, naming conventions, and style checks
1# Merlint configuration for cyclomatic project
2
3# Complexity rules
4max_complexity = 15
5max_function_length = 100
6
7# Style rules - be lenient for Printf and mutable state
8allow_obj_magic = false
9allow_str_module = false
10
11# Disable E351 until it can distinguish global vs local refs
12# TODO: re-enable when E351 is more precise