I configured my Eclipse to use the remote checkstyle configuration, which is located on the server to which I connect via HTTP. This works great, but the configuration contains:
<module name="SuppressionFilter"> <property name="file" value="${basedir}/checkstyle-filter.xml"/> </module>
So, I am trying to set an additional property, "basedir", which points to the same directory where the configuration is located. When I try to run checkstyle in a project, I get an error: it is not possible to initialize the SuppressionsFilter module - I cannot set the file property in the SuppressionFilter module to "http: //" my url "/checkstyle-filter.xml '
Any suggestions on how to configure Eclipse to use the checkstyle configuration from the server, even though it contains SuppressionFilter? I do not want to put a checkstyle filter in every project ...
source share