VSCode used to have issues with sorting Python imports (2021), as described further down below, but this has since been fixed.
All you need to do to make VSCode use its builtin isort
on save is this in your settings.json
:
//JAVA 8 | |
import net.md_5.bungee.api.ProxyServer; | |
import net.md_5.bungee.api.scheduler.ScheduledTask; | |
import java.util.concurrent.TimeUnit; | |
@FunctionalInterface | |
public interface ProxyRunnable extends Runnable{ | |
default ScheduledTask runAsync(){ |