Skip to content

Commit f0697be

Browse files
committed
Explicit import layout for packages begin with io
This PR adds explicit import layout for io.* packages so that their import orders are consistent between IDE and CLI. Without it, the IDE places the io.* imports at the bottom of the import list. See AbstractRepositoryS3RestTestCase for such an example.
1 parent dbac70e commit f0697be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ indent_size = 4
209209
max_line_length = 140
210210
ij_java_class_count_to_use_import_on_demand = 999
211211
ij_java_names_count_to_use_import_on_demand = 999
212-
ij_java_imports_layout = *,|,com.**,|,org.**,|,java.**,|,javax.**,|,$*
212+
ij_java_imports_layout = *,|,com.**,|,io.**,|,org.**,|,java.**,|,javax.**,|,$*
213213

214214
[*.json]
215215
indent_size = 2

0 commit comments

Comments
 (0)