From cb124c55914f1f9cf02661e8136b66a910c3fa1b Mon Sep 17 00:00:00 2001 From: 100yo Date: Fri, 3 Nov 2023 21:46:20 +0200 Subject: [PATCH] Update checktyle setup instructions --- docs/02-code-analysis-tools/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/02-code-analysis-tools/README.md b/docs/02-code-analysis-tools/README.md index f5a05250..f0676736 100644 --- a/docs/02-code-analysis-tools/README.md +++ b/docs/02-code-analysis-tools/README.md @@ -8,13 +8,13 @@ ```bash # point to our checkstyle rules -$ export CHECKS=https://raw.githubusercontent.com/fmi/java-course/master/docs/01-code-analysis-tools/checkstyle/checkstyle.xml +$ export CHECKS=https://raw.githubusercontent.com/fmi/java-course/master/docs/02-code-analysis-tools/checkstyle/checkstyle.xml # run for single .java file -$ java -jar checkstyle-10.4-all.jar -c $CHECKS Main.java +$ java -jar checkstyle-10.12.4-all.jar -c $CHECKS Main.java # run for the whole project -$ java -jar checkstyle-10.4-all.jar -c $CHECKS my-fancy-project/ +$ java -jar checkstyle-10.12.4-all.jar -c $CHECKS my-fancy-project/ ``` - From IntelliJ