Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
/** {@inheritDoc} */
@Override protected void beforeTest() throws Exception {
    fail("https://issues.apache.org/jira/browse/IGNITE-1113");
}


C. Code Inspection

Apache Ignite has (incubating) settings of inspections inspection rules that recommended to use during Ignite development. Settings can be found at <project directory>\.idea\inspectionProfiles\Project_Default.xml and will be automatically set as project default settings at first checkout.

in idea/ignite_inspections.xml. You can enable this profile manually using the following steps for IntelliJ IDEA:
Inspections (icon)->Configure inspections->(settings button)->Import Profile->select file and import.File → Settings → Editor → Code Style → Inspections → Configure inspections (gearwheel) → Import Profile... → Select a file and import

D. Abbreviation Plugin

It is recommended to install IntelliJ IDEA plugin for abbreviation advice Abbreviation Rules IntelliJ Idea Plugin.

...