BTW @tmortagne, about the following issue, did you open an issue on eclipse’s tracker to ask to support it? Works fine with IntelliJ’s idea reformatting for ex, and I don’t feel that it’s right to litter our test code with eclipse-specific reformatting comments. Would be much nicer to have Eclipse not touch it.
// @formatter:off
@ComponentList({
InfinispanCacheFactory.class,
DefaultCacheManager.class,
DefaultCacheFactory.class,
DefaultCacheManagerConfiguration.class
})
// @formatter:on
BTW the initial reason I started this thread was because I wanted to implement Checkstyle adjustments - #8 by vmassol but IDEA doesn’t allow to apply only part of the formatting rules (it’s all or nothing). I believe this was the same for you for Eclipse above and the reason why you applied the wrong formatting instead of skipping it. Right now I have to change the IDEA formatting completely, apply and then put it back (so that I can write new code following it). And do this every time, I reformat existing code, It’s a pain.