Skip to content

Commit e1d4788

Browse files
committed
chore: Fix linting errors.
1 parent ccca287 commit e1d4788

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/app/common/mongoose/moderation.plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ import { LogEventUtil } from '../../log-event/log.event.util';
2424
import { state } from '../../state';
2525
import { UserDocument } from '../../users/user.document';
2626
import { acl } from '../acl';
27+
import { apiCache } from '../api.cache';
2728
import { ApiError } from '../api.error';
2829
import { logger } from '../logger';
2930
import { Context } from '../typings/context';
30-
import { apiCache } from '../api.cache';
3131

3232
const modelResourceMap: { [key: string]: string } = {
3333
Release: 'releases',

src/app/files/file.util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1818
*/
1919

20-
import { access, createReadStream, createWriteStream, mkdir, stat, unlink, rename } from 'fs';
20+
import { access, createReadStream, createWriteStream, mkdir, rename, stat, unlink } from 'fs';
2121
import { dirname, resolve as resolvePath, sep } from 'path';
2222
import * as Stream from 'stream';
2323
import { promisify } from 'util';

src/app/files/processor/processor.queue.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ import { FileDocument } from '../file.document';
3131
import { FileUtil } from '../file.util';
3232
import { FileVariation } from '../file.variations';
3333
import { processorManager } from './processor.manager';
34-
import { OptimizationProcessor } from './processor';
3534

3635
const renameAsync = promisify(rename);
3736
const unlinkAsync = promisify(unlink);

0 commit comments

Comments
 (0)