mirror of
https://github.com/zoriya/flood.git
synced 2025-12-06 07:16:18 +00:00
style: add new rule for imports (#785)
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import fastify from 'fastify';
|
||||
import fs from 'fs';
|
||||
import supertest from 'supertest';
|
||||
import fs from 'node:fs';
|
||||
|
||||
import constructRoutes from '..';
|
||||
import {getAuthToken} from '../../util/authUtil';
|
||||
import {getTempPath} from '../../models/TemporaryStorage';
|
||||
import fastify from 'fastify';
|
||||
import supertest from 'supertest';
|
||||
|
||||
import type {AddFeedOptions, AddRuleOptions, ModifyFeedOptions} from '../../../shared/types/api/feed-monitor';
|
||||
import type {Feed, Rule} from '../../../shared/types/Feed';
|
||||
import {getTempPath} from '../../models/TemporaryStorage';
|
||||
import {getAuthToken} from '../../util/authUtil';
|
||||
import constructRoutes from '..';
|
||||
|
||||
const app = fastify({disableRequestLogging: true, logger: false});
|
||||
let request: supertest.SuperTest<supertest.Test>;
|
||||
|
||||
Reference in New Issue
Block a user