File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,16 @@ format-fix: ## Run cljstyle and fix the formatting of Clojure code
144
144
145
145
lint : # # Run MegaLinter with custom configuration (node.js required)
146
146
$(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
+
148
157
149
158
lint-clean : # # Clean MegaLinter report information
150
159
$(info --------- MegaLinter Clean Reports ---------)
You can’t perform that action at this time.
0 commit comments