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
The checker was tested with checkstyle version 5.5. If you're using
it with version 5.6 or later you should remove DoubleCheckedLocking from
your configuration file.
At the time of this writing, the checkstyle checker doesn't distinguish
between error severity levels. All messages are treated as errors, regardless
of their severity defined in the checkstyle config file.
Add
let g:syntastic_java_checkstyle_post_args = ['-p', 'path/to/checkstyle.properties']
to your configuration if you need to use a property file.
You probably want to download the "fat jar" checkstyle-*-all.jar
and point g:syntastic_java_checkstyle_classpath to it. Current builds at
Maven Central do not package checkstyles with its dependencies.
g:syntastic_java_checkstyle_classpath accepts multiple files if you want to
include the checkstyle jar and all of its dependencies.