views:

145

answers:

1

I recently installed the checkstyle addon for eclipse, while it does help me make some parts of my code clearer, there are some stupid rules. I've been capable of disabling most of those besides the using ++ is not allowed rule. Does anyone have any idea how I can disable that one?

+1  A: 

It is in "Coding Problems / Illegal Token" (or "Illegal Token Text")

In the setting of that Token check, you will find the "Postfix increment operator ++" for you to un-check.

alt text

VonC