Skip to content

Commit 7a2a93d

Browse files
dev: update lint target to MegaLinter v7, add variants
lint-beta runs --release beta variant lint-full runs full megalinter image
1 parent 7dc367c commit 7a2a93d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,16 @@ format-fix: ## Run cljstyle and fix the formatting of Clojure code
144144

145145
lint: ## Run MegaLinter with custom configuration (node.js required)
146146
$(info --------- MegaLinter Runner ---------)
147-
npx mega-linter-runner --flavor java --env "'MEGALINTER_CONFIG=.github/config/megalinter.yaml'" --remove-container
147+
npx mega-linter-runner --flavor java --release v7 --env "'MEGALINTER_CONFIG=.github/config/megalinter.yaml'" --remove-container
148+
149+
lint-full: ## Run MegaLinter full image with custom configuration (node.js required)
150+
$(info --------- MegaLinter Runner ---------)
151+
npx mega-linter-runner --release v7 --env "'MEGALINTER_CONFIG=.github/config/megalinter.yaml'" --remove-container
152+
153+
lint-beta: ## Run MegaLinter beta release with custom configuration (node.js required)
154+
$(info --------- MegaLinter Runner ---------)
155+
npx mega-linter-runner --flavor java --release beta --env "'MEGALINTER_CONFIG=.github/config/megalinter.yaml'" --remove-container
156+
148157

149158
lint-clean: ## Clean MegaLinter report information
150159
$(info --------- MegaLinter Clean Reports ---------)

0 commit comments

Comments
 (0)