You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also download the latest checkstyle-8.XX-all.jar file from the official download page and create a custom launch script like the one below to start checkstyle:
#!/bin/sh
java -jar checkstyle-8.XX-all.jar "@"
The advantages of using launch scripts is that you can use the latest version of checkstyle and add custom options to the command line:
Once you create the launch script save it as checkstyle somewhere on your $PATH so ALE can find and use it. Also make sure to make the launch script executable:
chmod u+x checkstyle
Notes:
Do not add the -c option to the launch script. This option will be added by ALE when invoking the command.