Fix remaining eslint errors

h/t @paescuj
This commit is contained in:
rijkvanzanten
2021-04-29 15:55:12 -04:00
parent 5b7bd55d68
commit 801e868554
308 changed files with 1031 additions and 1221 deletions

View File

@@ -1,12 +1,12 @@
import express from 'express';
import asyncHandler from '../utils/async-handler';
import Joi from 'joi';
import { InvalidPayloadException, InvalidCredentialsException, ForbiddenException } from '../exceptions';
import { UsersService, MetaService, AuthenticationService } from '../services';
import useCollection from '../middleware/use-collection';
import { ForbiddenException, InvalidCredentialsException, InvalidPayloadException } from '../exceptions';
import { respond } from '../middleware/respond';
import { PrimaryKey } from '../types';
import useCollection from '../middleware/use-collection';
import { validateBatch } from '../middleware/validate-batch';
import { AuthenticationService, MetaService, UsersService } from '../services';
import { PrimaryKey } from '../types';
import asyncHandler from '../utils/async-handler';
const router = express.Router();