-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdune-project
More file actions
224 lines (210 loc) · 3.69 KB
/
Copy pathdune-project
File metadata and controls
224 lines (210 loc) · 3.69 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
(lang dune 3.20)
(name dunolint)
(generate_opam_files)
(license "LGPL-3.0-or-later WITH LGPL-3.0-linking-exception")
(authors "Mathieu Barbin")
(maintainers "Mathieu Barbin <opensource@mbarbin.org>")
(source
(github mbarbin/dunolint))
(documentation "https://mbarbin.github.io/dunolint/")
(implicit_transitive_deps false-if-hidden-includes-supported)
(package
(name dunolint-lib)
(synopsis "A library to create dunolint configs")
(depends
(ocaml
(>= 4.14))
(dyn
(>= 3.20))
(re
(>= 1.8.0))
(sexplib0
(>= v0.16))))
(package
(name dunolint-lib-base)
(synopsis "An extension of dunolint-lib for use with Base")
(depends
(ocaml
(>= 4.14))
(base
(>= v0.16))
(dunolint-lib
(= :version))))
(package
(name dunolint)
(synopsis "A linter for build files in dune projects")
(depends
(ocaml
(>= 5.3))
(cmdlang
(>= 0.0.9))
(cmdlang-cmdliner-err-runner
(>= 0.0.16))
(dune-build-info
(>= 3.20))
(dunolint-lib
(= :version))
(dyn
(>= 3.20))
(file-rewriter
(>= 0.0.3))
(fmt
(>= 0.9.0))
(fpath
(>= 0.7.3))
(fpath-sexp0
(>= 0.4.0))
(loc
(>= 0.3.3))
(logs
(>= 0.7.0))
(ordering
(>= 3.20))
(pageantty
(>= 0.0.3))
(parsexp
(>= v0.17))
(pp
(>= 2.0.0))
(pplumbing-err
(>= 0.0.16))
(pplumbing-log
(>= 0.0.16))
(pplumbing-log-cli
(>= 0.0.16))
(pplumbing-pp-tty
(>= 0.0.16))
(re
(>= 1.8.0))
(sexplib0
(>= v0.17))
(sexps-rewriter
(>= 0.0.3))
(volgo
(>= 0.0.21))
(volgo-git-unix
(>= 0.0.21))
(volgo-hg-unix
(>= 0.0.21))))
(package
(name dunolint-tests)
(synopsis "Tests for dunolint")
(depends
(ocaml
(>= 5.3))
(dune
(>= 3.20))
(cmdlang
(>= 0.0.9))
(cmdlang-cmdliner-err-runner
(>= 0.0.16))
(cmdlang-stdlib-runner
(>= 0.0.9))
(cmdliner
(>= 1.3.0))
(dune-build-info
(>= 3.20))
(dunolint
(= :version))
(dunolint-lib
(= :version))
(file-rewriter
(>= 0.0.3))
(fpath
(>= 0.7.3))
(fpath-sexp0
(>= 0.4.0))
(loc
(>= 0.3.3))
(logs
(>= 0.7.0))
(pageantty
(>= 0.0.3))
(parsexp
(>= v0.17))
(pp
(>= 2.0.0))
(pplumbing-err
(>= 0.0.16))
(pplumbing-log
(>= 0.0.16))
(pplumbing-log-cli
(>= 0.0.16))
(pplumbing-pp-tty
(>= 0.0.16))
(ppx_expect
(>= v0.17))
(re
(>= 1.8.0))
(sexplib0
(>= v0.17))
(sexps-rewriter
(>= 0.0.3))
(volgo
(>= 0.0.21))
(volgo-git-unix
(>= 0.0.21))
(volgo-hg-unix
(>= 0.0.21))
(volgo-vcs
(>= 0.0.21))
(windtrap
;; For the scope of the project the [:with-test] annotation below does not
;; match our conventions, as this is test-only package. But without it,
;; [opam-dune-lint] complains (it is only used by a dune [test] stanza atm.)
;; We wish to continue relying on a clean exit code for [opam-dune-lint] at
;; this time, so we added the annotation.
(and
:with-test
(>= 0.1.0)))))
(package
(name dunolint-lib-base-tests)
(synopsis "Tests for dunolint-lib-base")
(depends
(ocaml
(>= 5.3))
(dunolint-lib
(= :version))
(dunolint-lib-base
(= :version))
(ppx_expect
(>= v0.17))))
(package
(name dunolint-dev)
(synopsis "Package to regroup dev targets, documentation, and more")
(allow_empty)
(depends
(ocaml
(>= 5.3))
(dune
(>= 3.20))
(ocamlformat
(= 0.29.0))
(bisect_ppx
(>= 2.8.3))
(dunolint
(= :version))
(dunolint-lib
(= :version))
(dunolint-lib-base
(= :version))
(dunolint-lib-base-tests
(= :version))
(dunolint-tests
(= :version))
(ppx_expect
(>= v0.17))
(ppx_js_style
(>= v0.17))
(volgo
(>= 0.0.21))
(volgo-git-unix
(>= 0.0.21))
(volgo-hg-unix
(>= 0.0.21))
(volgo-vcs
(>= 0.0.21))
(odoc
(>= 2.4.4))
(sherlodoc
(>= 0.2))))