8726d3dc4e
- Ktor code style [here](https://ktor.io/quickstart/code-style.html) suggests to use star imports for Ktor packages - Absence of it in the default code style for Kotlin results in some inconveniences during auto-import and autocompletion (see the issue) - Automatic * import should mitigate the issue, since the first autocompleted item from the proper package should import the whole package, and then no further auto-import would be required for the next completions - KT-37950 Fixed