this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "OCaml linter experiment" 4description: 5 "Inspired by https://discuss.ocaml.org/t/how-possible-is-a-clippy-like-linter-for-ocaml" 6maintainer: ["kakadu@pm.me"] 7authors: ["Kakadu"] 8license: "LGPL-3.0-only" 9homepage: "https://github.com/Kakadu/zanuda" 10bug-reports: "https://github.com/Kakadu/zanuda/issues" 11depends: [ 12 "dune" {>= "3.4"} 13 "ocaml" {>= "4.14" & < "5.0"} 14 "yojson" {>= "2.0.0"} 15 "sexplib" 16 "ppx_inline_test" 17 "ppx_assert" 18 "ppx_expect" 19 "stdune" 20 "angstrom" {>= "0.15.0"} 21 "base" {with-test} 22 "ppx_blob" {with-test} 23 "ppx_fields_conv" {with-test} 24 "menhir" {with-test} 25 "ocamlformat" {>= "0.23.0"} 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test & arch != "x86_32"} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/Kakadu/zanuda.git" 43url { 44 src: "https://github.com/Kakadu/zanuda/archive/refs/tags/1.0.0.tar.gz" 45 checksum: [ 46 "md5=7f3594582be24f712c50f7968c3bce6e" 47 "sha512=d8a4ca63125e09aeab19b37fa3a23028da335a6e6dd88ca08e9398171a11ad461e05d915ac1cc4e4987d7371375bf815f5ea36237527d27812577209eda3c960" 48 ] 49} 50 51x-maintenance-intent: [ "(latest)" ]