Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 26 additions & 26 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,32 +98,32 @@ To the greatest extent possible, please wrap lines to ensure that they do not ex

### IDE Configuration

* Eclipse, by and large the IDE defaults are acceptable with the following changes:
- Tab policy to `Spaces only`.
- Indent statements within `switch` body.
- Maximum line width `120`.
- Line wrapping, ensure all to `wrap where necessary`.
- Organize imports alphabetically, no grouping.
* NetBeans, by and large the IDE defaults are acceptable with the following changes:
- Tabs and Indents:
+ Change Right Margin to `120`.
+ Indent case statements in switch.
- Wrapping:
+ Change all the `Never` values to `If Long`.
+ Select the checkbox for Wrap After Assignment Operators.
* IntelliJ, by and large the IDE defaults are acceptable with the following changes:
- Wrapping and Braces:
+ Change `Do not wrap` to `Wrap if long`.
+ Change `Do not force` to `Always`.
- Javadoc:
+ Disable generating `<p/>` on empty lines.
- Imports:
+ Class count to use import with '*': `9999`.
+ Names count to use static import with '*': `99999`.
+ Import Layout:
* import all other imports.
* blank line.
* import static all other imports.
- Eclipse: by and large the IDE defaults are acceptable with the following changes:
- Tab policy to `Spaces only`.
- Indent statements within `switch` body.
- Maximum line width `120`.
- Line wrapping, ensure all to `wrap where necessary`.
- Organize imports alphabetically, no grouping.
- NetBeans: by and large the IDE defaults are acceptable with the following changes:
- Tabs and Indents:
- Change Right Margin to `120`.
- Indent case statements in switch.
- Wrapping:
- Change all the `Never` values to `If Long`.
- Select the checkbox for Wrap After Assignment Operators.
- IntelliJ: by and large the IDE defaults are acceptable with the following changes:
- Wrapping and Braces:
- Change `Do not wrap` to `Wrap if long`.
- Change `Do not force` to `Always`.
- Javadoc:
- Disable generating `<p/>` on empty lines.
- Imports:
- Class count to use import with '*': `9999`.
- Names count to use static import with '*': `99999`.
- Import Layout:
- import all other imports.
- blank line.
- import static all other imports.

## Issues

Expand Down