package zanuda
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Linter for OCaml+dune projects
Install
dune-project
Dependency
Authors
Maintainers
Sources
zanuda-2.1.0.tbz
sha256=9f6f5684ff7329cf84086e6239f02060e711c369fac1553a55e1cd53d8aa8234
sha512=d90e36fc67ba2f1adc13a964a39c46ec354201ea1ff400c5dfe5ab384e07edcc8d2ec42dc053cdc091e217c4183d97a2d33ac12d3977b65defbac506a0b3418e
doc/zanuda.core/Zanuda_core/LINT/index.html
Module Zanuda_core.LINT
Module types for program tree analyzers
A type of lint's implementation. Typed and untyped lints inspect OCaml's Parsetree/Typedtree respectively. In Clippy it corresponds to early and late lint passes.
type group = | Style(*Code that should be written in a more idiomatic way
*)| Correctness(*Code that is outright wrong or useless
*)| Perf(*Code that can be written to run faster
*)| Restriction| Deprecated| Pedantic(*Lints which are rather strict or might have false positives
*)| Complexity| Suspicious| Nursery(*New lints that are still under development
*)
Group of lints. The same as Rust's Clippy
module type GENERAL = sig ... endmodule type UNTYPED = sig ... endmodule type TYPED = sig ... endmodule type UNUSED_DECLS = sig ... endmodule type REPORTER = sig ... end sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>