diff options
author | Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> | 2023-11-28 00:41:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 00:41:17 +0100 |
commit | 3f0c8712c3442fb7de870f71348d41b817dec6e7 (patch) | |
tree | 25f6fe85681c598896f005562d1b28e34d3ffd83 /.editorconfig | |
parent | a1bce3d67b9754707fe809f1b24eeef73356d9dd (diff) | |
download | skyhanni-3f0c8712c3442fb7de870f71348d41b817dec6e7.tar.gz skyhanni-3f0c8712c3442fb7de870f71348d41b817dec6e7.tar.bz2 skyhanni-3f0c8712c3442fb7de870f71348d41b817dec6e7.zip |
Internal: Updated editorconfig (#734)
Updated .editorconfig file to better support imports. #734
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index 28d8209de..8354a021e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -23,8 +23,10 @@ max_line_length = 120 # Java files should not use wildcard imports ij_java_names_count_to_use_import_on_demand = 999 ij_java_class_count_to_use_import_on_demand = 999 +ij_java_packages_to_use_import_on_demand = [*.kt] # Kotlin files should not use wildcard imports ij_kotlin_name_count_to_use_star_import = 999 ij_kotlin_name_count_to_use_star_import_for_members = 999 +ij_kotlin_packages_to_use_import_on_demand = |