start function

void start(
  1. List<String> args,
  2. SendPort sendPort
)

Start the analysis plugin

Implementation

void start(List<String> args, SendPort sendPort) {
  ServerPluginStarter(
    CoolLinterPlugin(PhysicalResourceProvider.INSTANCE),
  ).start(sendPort);
}