Prasanna Narayanan
Prasanna Narayanan

Reputation: 439

How to disable checkstyle in Eclipse?

I have checkstyle plugin installed in my Eclipse. How do I disable it for a specific project in my workspace?

If that is not feasible I would like to turn off checkstyle.

Upvotes: 20

Views: 27872

Answers (3)

anirban
anirban

Reputation: 704

In latest eclipse version(9/2014) we have to visit Help -> Eclipse Market and go to installed tab. Then select uninstall. After uninstallation this will ask for a eclipse restart. And that is it.

enter image description here

Upvotes: 0

VonC
VonC

Reputation: 1324248

You can also disable Checkstyle just on one project by the contextual menu at the project level.

See:

Desactivate Checkstyle

If you really need to uninstall the plugin, it is best to use:

Help/About/Installation Details 

Select the right plugins and uninstall them:

Uninstall Plugins

Upvotes: 52

Prasanna Narayanan
Prasanna Narayanan

Reputation: 439

Okay figured this out myself. Just need to remove the folder "com.atlassw.tools.eclipse.checkstyle_4.4.1" under the plugins folder of eclipse. Duh!

Upvotes: 0

Related Questions