Disable wildcard imports for Java and Kotlin files
Out-of-the-box Android Studio will perform wildcard imports if the import list is >= 3. This is a lint failure. Adjust the default to 999 so that, in practice, wildcard imports never happen.
This commit is contained in:
parent
16e1ab20f6
commit
ca9b171868
1 changed files with 6 additions and 0 deletions
|
@ -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…
Reference in a new issue