Module Config.V0

type t
val equal : t -> t -> bool
val compare : t -> t -> int
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t

Getters

Skip subtree

This part relate to making dunolint ignor parts of your project, namely not visiting entire sub directories of your repo.

module Skip_subtree : sig ... end
val skip_subtree : t -> Skip_subtree.t option

Generic rules

module Rule : sig ... end
val rules : t -> Rule.t list

Creating configs

val create : ?skip_subtree:Skip_subtree.t -> ?rules:Rule.t list -> unit -> t
module Std : sig ... end