-
Notifications
You must be signed in to change notification settings - Fork 95
CodingGuidelines
Will Rogers edited this page Mar 22, 2016
·
13 revisions
- Remove any trailing whitespace for all files
- Files should have Unix-style line endings
- Use four spaces (no tabs) for indentation
- Add the
@Overrideannotation when overriding methods or implementing interface methods
- Use spaces (no tabs) for indentation; number of spaces is not mandated
- Do not commit the
.settingsfolder for a plug-in to Git - In the
.classpathfile, ensure the following entry<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>does not contain a specific Java version - In
META-INF/MANIFEST.MF, ensure that the correct Java version is selected:Bundle-RequiredExecutionEnvironment: JavaSE-1.8
See UnitTests