style: improve linting of imports

A new plugin is used that offers autofixing capabilities.
This commit is contained in:
Ruben Taelman
2020-08-26 10:35:51 +02:00
committed by Joachim Van Herwegen
parent 5126356c94
commit 48740e5cba
74 changed files with 781 additions and 246 deletions

View File

@@ -1,9 +1,9 @@
import { Server } from 'http';
import request from 'supertest';
import { ExpressHttpServer } from '../../../src/server/ExpressHttpServer';
import { HttpHandler } from '../../../src/server/HttpHandler';
import { HttpRequest } from '../../../src/server/HttpRequest';
import { HttpResponse } from '../../../src/server/HttpResponse';
import request from 'supertest';
import { Server } from 'http';
const handle = async(input: { request: HttpRequest; response: HttpResponse }): Promise<void> => {
input.response.writeHead(200);