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
12 changes: 6 additions & 6 deletions .github/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,19 +155,19 @@ default inspections, with some modifications.

Enable the following inspections:

- ``Java | Internationalization | Implicit platform default charset``,
- ``Java | Control flow issues | Redundant 'else'`` (including
``Report when there are no more statements after the 'if' statement`` option),
- ``Java | Class structure | Utility class is not 'final'``,
- ``Java | Class structure | Utility class with 'public' constructor``,
- ``Java | Class structure | Utility class without 'private' constructor``.
- ``Java | Class structure | Utility class without 'private' constructor``,
- ``Java | Control flow issues | Redundant 'else'`` (including
``Report when there are no more statements after the 'if' statement`` option),
- ``Java | Internationalization | Implicit platform default charset``.

Disable the following inspections:

- ``Java | Performance | Call to 'Arrays.asList()' with too few arguments``,
- ``Java | Abstraction issues | 'Optional' used as field or parameter type``,
- ``Java | Code style issues | Local variable or parameter can be 'final'``,
- ``Java | Data flow | Boolean method is always inverted``.
- ``Java | Data flow | Boolean method is always inverted``,
- ``Java | Performance | Call to 'Arrays.asList()' with too few arguments``.

Update the following inspections:

Expand Down
Loading