-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdunolint.opam
68 lines (64 loc) · 1.94 KB
/
dunolint.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A linter for build files in dune projects"
maintainer: ["Mathieu Barbin <[email protected]>"]
authors: ["Mathieu Barbin"]
license: "LGPL-3.0-or-later WITH LGPL-3.0-linking-exception"
homepage: "https://github.com/mbarbin/dunolint"
doc: "https://mbarbin.github.io/dunolint/"
bug-reports: "https://github.com/mbarbin/dunolint/issues"
depends: [
"dune" {>= "3.17"}
"ocaml" {>= "5.3"}
"base" {>= "v0.17" & < "v0.18"}
"cmdlang" {>= "0.0.9"}
"dunolint-lib" {= version}
"file-rewriter" {>= "0.0.3"}
"fmt" {>= "0.9.0"}
"fpath" {>= "0.7.3"}
"fpath-base" {>= "0.2.2"}
"fpath-sexp0" {>= "0.2.2"}
"loc" {>= "0.2.2"}
"logs" {>= "0.7.0"}
"parsexp" {>= "v0.17" & < "v0.18"}
"patdiff" {>= "v0.17" & < "v0.18"}
"pp" {>= "2.0.0"}
"pplumbing" {>= "0.0.9"}
"ppx_compare" {>= "v0.17" & < "v0.18"}
"ppx_enumerate" {>= "v0.17" & < "v0.18"}
"ppx_hash" {>= "v0.17" & < "v0.18"}
"ppx_here" {>= "v0.17" & < "v0.18"}
"ppx_let" {>= "v0.17" & < "v0.18"}
"ppx_sexp_conv" {>= "v0.17" & < "v0.18"}
"ppx_sexp_value" {>= "v0.17" & < "v0.18"}
"ppxlib" {>= "0.35.0"}
"sexplib0" {>= "v0.17" & < "v0.18"}
"sexps-rewriter" {>= "0.0.3"}
"stdio" {>= "v0.17" & < "v0.18"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/mbarbin/dunolint.git"
description: """\
[dunolint] is a set of OCaml libraries and a cli tool to lint and help
manage files in (large) dune projects.
[dunolint] is the package that implements the linter engine for
dunolint configs as well as the [dunolint] command line tool.
You may install it to get the [dunolint] cli, and/or if you want to
use the linting libraries to write custom rewriters and linters.
"""
tags: [ "dune" "linter" ]
x-maintenance-intent: [ "(latest)" ]