style: auto format

This commit is contained in:
github-actions[bot] 2024-03-17 18:54:31 +00:00
parent 085387f4b0
commit 0a2f685d42
9 changed files with 43 additions and 29 deletions

View File

@ -16,10 +16,12 @@ export const route: Route = {
example: '/fanxinzhui',
categories: ['multimedia'],
radar: [{
source: ['fanxinzhui.com/lastest'],
target: '/',
}],
radar: [
{
source: ['fanxinzhui.com/lastest'],
target: '/',
},
],
};
async function handler(ctx) {

View File

@ -34,4 +34,4 @@ async function handler() {
description: `<img src="${item.img_url}"><br>价格:${item.product_price}`,
})),
};
};
}

View File

@ -29,4 +29,4 @@ async function handler() {
item: list,
description: response.data.description,
};
};
}

View File

@ -43,11 +43,13 @@ async function handler(ctx) {
return {
title: `MIUI 更新 - ${device} - ${type === 'release' ? '稳定版' : '开发版'}`,
link: 'http://www.miui.com/download.html',
item: [{
title: `${device} 有新的 ${localeTypeName}本: ${responseData.LatestFullRom.version}`,
guid: responseData.LatestFullRom.md5,
description: responseData.LatestFullRom.filename,
link: responseData.LatestFullRom.descriptionUrl,
}],
item: [
{
title: `${device} 有新的 ${localeTypeName}本: ${responseData.LatestFullRom.version}`,
guid: responseData.LatestFullRom.md5,
description: responseData.LatestFullRom.filename,
link: responseData.LatestFullRom.descriptionUrl,
},
],
};
};
}

View File

@ -6,9 +6,11 @@ export const route: Route = {
path: '/',
categories: ['blog'],
example: '/pianyivps',
radar: [{
source: ['pianyivps.com/'],
}],
radar: [
{
source: ['pianyivps.com/'],
},
],
name: '最新发布',
maintainers: ['cnkmmk'],
handler,

View File

@ -10,9 +10,11 @@ export const route: Route = {
path: '/news',
categories: ['programming'],
example: '/rustcc/news',
radar: [{
source: ['rustcc.cn/'],
}],
radar: [
{
source: ['rustcc.cn/'],
},
],
name: '新闻/聚合',
maintainers: ['zhenlohuang'],
handler,

View File

@ -5,9 +5,11 @@ export const route: Route = {
path: '/articles',
categories: ['programming'],
example: '/web/articles',
radar: [{
source: ['web.dev/articles'],
}],
radar: [
{
source: ['web.dev/articles'],
},
],
name: 'Articles',
maintainers: ['KarasuShin'],
handler,

View File

@ -5,9 +5,11 @@ export const route: Route = {
path: '/blog',
categories: ['programming'],
example: '/web/blog',
radar: [{
source: ['web.dev/blog'],
}],
radar: [
{
source: ['web.dev/blog'],
},
],
name: 'Blog',
maintainers: ['KarasuShin'],
handler,

View File

@ -6,10 +6,12 @@ export const route: Route = {
parameters: { seriesName: 'topic name in the series section' },
categories: ['programming'],
example: '/web/series/new-to-the-web',
radar: [{
source: ['web.dev/series/:seriesName'],
target: '/series/:seriesName',
}],
radar: [
{
source: ['web.dev/series/:seriesName'],
target: '/series/:seriesName',
},
],
name: 'Series',
maintainers: ['KarasuShin'],
handler,