start function

void start(
  1. Iterable<String> _,
  2. SendPort sendPort
)

Implementation

void start(Iterable<String> _, SendPort sendPort) {
  ServerPluginStarter(
          ImportLintPlugin(resourceProvider: PhysicalResourceProvider.INSTANCE))
      .start(sendPort);
}