-
Notifications
You must be signed in to change notification settings - Fork 9
/
dune-project
79 lines (70 loc) · 1.26 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
(lang dune 3.4)
(cram enable)
(generate_opam_files true)
(source
(github Kakadu/zanuda))
(license LGPL-3.0-only)
(authors "Kakadu")
(maintainers "[email protected]")
(name zanuda)
(package
(name zanuda)
(synopsis "Linter for OCaml+dune projects")
(description
"Lints for OCaml projects. Primary usage is for teaching/education")
(tags
(lint test))
(depends
(ocaml
(and
(>= 4.14)
(< 5.0)))
(yojson
(>= 2.0.0))
; (ppxlib
; (and
; (>= 0.25.1)
; (<= 0.28.0)))
sexplib
ppx_inline_test ; implies dependecy on base
ppx_assert
ppx_expect
bisect_ppx
stdune
dune-build-info
(angstrom
(>= 0.15.0))
(base :with-test)
(ppx_fields_conv :with-test)
(ppx_deriving :with-test)
(ppx_blob :with-test) ; currently required for ToplevelEval test
(menhir :with-test)
(ocamlformat
(and
(= 0.26.2)
:dev))
(odoc :with-doc)
(odig :with-doc)))
(package
(name reviewer)
(synopsis "Creator of review for GitHub PR")
(description
"The tool for creating review in GitHub Pull Requests by zanuda's report")
(depends
(ocaml
(and
(>= 4.14)
(< 5.0)))
ppx_inline_test
ppx_show
ppx_expect
bisect_ppx
curly
yojson
stdune
(angstrom
(>= 0.15.0))
(ocamlformat
(and
(= 0.26.2)
:dev))))