Skip to content

Commit

Permalink
Prohibit the use of *-imports via .editorconfig (#1353)
Browse files Browse the repository at this point in the history
### What's done:

 * The use of star-imports is now prohibited
  • Loading branch information
0x6675636b796f75676974687562 authored Jun 7, 2022
1 parent 38ac9b7 commit b12c685
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,8 @@ ij_kotlin_method_call_chain_wrap = normal
ij_kotlin_method_parameters_new_line_after_left_paren = true
ij_kotlin_method_parameters_right_paren_on_new_line = true
ij_kotlin_method_parameters_wrap = on_every_item
ij_kotlin_name_count_to_use_star_import = 5
ij_kotlin_name_count_to_use_star_import_for_members = 3
ij_kotlin_packages_to_use_import_on_demand = java.util.*,kotlinx.android.synthetic.**,io.ktor.**
ij_kotlin_name_count_to_use_star_import = 2147483647
ij_kotlin_name_count_to_use_star_import_for_members = 2147483647
ij_kotlin_parameter_annotation_wrap = off
ij_kotlin_space_after_comma = true
ij_kotlin_space_after_extend_colon = true
Expand Down

0 comments on commit b12c685

Please sign in to comment.