diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-06-04 21:38:12 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 21:38:12 +1000 |
commit | efcebe42a9cc2ed20ec78c2114c69d7abdc59380 (patch) | |
tree | d5d169033dedaf140f587f57741d4a2d1c8e62ac /.editorconfig | |
parent | 6a31867ec99108b3f50c10b52f54876374c66e0b (diff) | |
download | skyhanni-efcebe42a9cc2ed20ec78c2114c69d7abdc59380.tar.gz skyhanni-efcebe42a9cc2ed20ec78c2114c69d7abdc59380.tar.bz2 skyhanni-efcebe42a9cc2ed20ec78c2114c69d7abdc59380.zip |
Backend: Actually set import on demand to something (#1992)
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.editorconfig b/.editorconfig index 0c2021243..e9df19c7c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -23,11 +23,11 @@ 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 = +ij_java_packages_to_use_import_on_demand = 999 [*.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 = +ij_kotlin_packages_to_use_import_on_demand = 999 ij_kotlin_enum_constants_wrap = split_into_lines |