Browse Source

Merge pull request #3521 from nikclayton/patch-4

Disable wildcard imports for Java and Kotlin files
pull/3517/merge
Nik Clayton 3 years ago committed by GitHub
parent
commit
df44bfbf7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .editorconfig

6
.editorconfig

@ -7,5 +7,11 @@ indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
# Disable wildcard imports
[*.{java, kt}]
ij_kotlin_name_count_to_use_star_import = 999
ij_kotlin_name_count_to_use_star_import_for_members = 999
ij_java_class_count_to_use_import_on_demand = 999
[*.{yml,yaml}]
indent_size = 2

Loading…
Cancel
Save