Skip to content

Commit baea981

Browse files
committed
fix(route/alwayscontrol): fix import alphabetical order
- Sort imports alphabetically as required by ESLint - Order: cache -> got -> load (cheerio) -> parseDate - Fix ESLint simple-import-sort rule violation
1 parent 6cc9a01 commit baea981

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/routes/alwayscontrol/news.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import type { Route } from '@/types';
22

3-
import { load } from 'cheerio';
4-
53
import cache from '@/utils/cache';
64
import got from '@/utils/got';
5+
import { load } from 'cheerio';
76
import { parseDate } from '@/utils/parse-date';
87

98
const baseUrl = 'https://www.alwayscontrol.com.cn';

0 commit comments

Comments
 (0)