From 8b6e76149621eb541277576e5978a4f76e09ecb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= Date: Sun, 26 Jan 2025 20:04:30 +0900 Subject: [PATCH] Add lint commands in Makefile --- bindings/java/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/bindings/java/Makefile b/bindings/java/Makefile index 6d303c38a..4bcbee2c1 100644 --- a/bindings/java/Makefile +++ b/bindings/java/Makefile @@ -1,6 +1,12 @@ -.PHONY: test build_test +.PHONY: java_lint test build_test -test: build_test +lint: + ./gradlew spotlessCheck + +lint_apply: + ./gradlew spotlessApply + +test: lint build_test ./gradlew test --info build_test: