mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
* feat: add prettier and commit hooks * style(*): prettier format * fix(eslint): parsing error: Unexpected token ... * style(eslint): eslint --fix * style(bilibili): fix `no-undef` and `no-unused-vars` * style(jiandan): fix eqeqeq * style(pixiv): disable `no-constant-condition` rule for eslint * fix(pixiv): use template string * style(toutiao): remove unused variables * style(weibo): use `forEach` instead of `map` The array has no return value, you should use `forEach` instead of `map` * chore(hooks): add eslint hooks * chore(hooks): switch from husky to yorkie * style(zhihu): prettier format * style(docs): fix vuepress custom container https://vuepress.vuejs.org/guide/markdown.html#custom-containers * chore(prettier): set a more reasonable `printWidth` value * style(*): better prettier format
31 lines
723 B
JavaScript
31 lines
723 B
JavaScript
module.exports = {
|
|
title: 'RSSHub',
|
|
description: '🍰 使用 RSS 连接全世界',
|
|
ga: 'UA-48084758-10',
|
|
serviceWorker: true,
|
|
themeConfig: {
|
|
repo: 'DIYgod/RSSHub',
|
|
editLinks: true,
|
|
editLinkText: '帮助我们改善此页面!',
|
|
docsDir: 'docs',
|
|
nav: [
|
|
{
|
|
text: '使用',
|
|
link: '/',
|
|
},
|
|
{
|
|
text: '参与我们',
|
|
link: '/joinus/',
|
|
},
|
|
{
|
|
text: '部署',
|
|
link: '/install/',
|
|
},
|
|
{
|
|
text: '支持 RSSHub',
|
|
link: '/support/',
|
|
},
|
|
],
|
|
},
|
|
};
|