add lint alias

This commit is contained in:
Rudi Grinberg 2017-12-11 18:49:32 +08:00
parent 897c1e2e5e
commit 66fc8db600
2 changed files with 2 additions and 0 deletions

View File

@ -113,6 +113,7 @@ let default = make "DEFAULT"
let runtest = make "runtest"
let install = make "install"
let doc = make "doc"
let lint = make "lint"
module Store = struct
type entry =

View File

@ -26,6 +26,7 @@ val default : dir:Path.t -> t
val runtest : dir:Path.t -> t
val install : dir:Path.t -> t
val doc : dir:Path.t -> t
val lint : dir:Path.t -> t
val dep : t -> ('a, 'a) Build.t