From b1740fb305318981b318583e2573615e7bc5df5c Mon Sep 17 00:00:00 2001 From: eikek Date: Sat, 12 Jun 2021 21:31:49 +0200 Subject: [PATCH] Add openapi linting to sbt's lint alias --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 013014da..2cbf0eaa 100644 --- a/build.sbt +++ b/build.sbt @@ -785,7 +785,7 @@ addCommandAlias("make-pkg", ";clean ;make ;make-zip ;make-deb ;make-tools") addCommandAlias("ci", "make; lint; test") addCommandAlias( "lint", - "scalafmtSbtCheck; scalafmtCheckAll; Compile/scalafix --check; Test/scalafix --check" + "restapi/openapiLint; joexapi/openapiLint; scalafmtSbtCheck; scalafmtCheckAll; Compile/scalafix --check; Test/scalafix --check" ) addCommandAlias("fix", "Compile/scalafix; Test/scalafix; scalafmtSbt; scalafmtAll") addCommandAlias("make-website", ";website/clean ;website/zolaBuild ;website/zolaCheck")