Add lint commands in Makefile

This commit is contained in:
김선우 2025-01-26 20:04:30 +09:00
parent 609839d79a
commit 8b6e761496

View file

@ -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: