Skip to content
Zsolt Kebel edited this page Nov 20, 2023 · 19 revisions

Wiki > The GUI > Eclipse > Check Style setup

Check style is set up by:

Install checkstyle plugin.

You may need to install an older version to be compatible with our checkstyle config in case our dependencies are not up to date.

  1. Help --> Install New Software
  2. Add new site (Name: Checkstyle, Location: https://checkstyle.org/eclipse-cs-update-site)
  3. Uncheck "Show only latest versions of available software"
  4. Uncheck "Hide Items that are already installed"
  5. Install the correct version of "Eclipse Checkstyle Plug-in"(at the moment this is v10.0.0). If you see another version in the list that is already installed, you need to uninstall it first: Go to Help > About Eclipse IDE > Installation Details, search for "checkstyle" in the list of installed software and click Uninstall

Configure Checkstyle to use external file.

  1. In Eclipse open checkstyle settings via Window > Preferences > Checkstyle
  2. If you have an existing "IBEX Checks" entry using an internal configuration, remove it. If it complains about the configuration currently being used in projects, you may have to remove and re-import all projects before you remove this config.
  3. Add a new check configuration by clicking New... next to the table
  4. Set the following
    1. File: External configuration file
    2. Name: IBEX Checks
    3. Location: C:\Instrument\Dev\ibex_gui\base\uk.ac.stfc.isis.ibex.client.tycho.parent\checkstyle.xml
    4. Additional Properties button
      1. Add... button
      2. Set:
        • Name: checkstyle.suppressions.file
        • Value: C:\Instrument\Dev\ibex_gui\base\uk.ac.stfc.isis.ibex.client.tycho.parent\suppressions.xml
  5. Apply and close: you should now be setup
    1. If you have issues with the highlight colour on a dark theme you can go to: Window -> Preferences, General -> Editors -> Text Editors -> Annotations to change it.

Useful links

https://checkstyle.org/eclipse-cs/#!/custom-config

Clone this wiki locally