0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-04-03 10:35:14 +00:00
Files
jellyfin-vue/frontend/eslint.config.ts
Fernando Fernández 0be0f30632 chore: extend monorepo structure, better docs
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
2025-01-25 00:06:49 +01:00

20 lines
587 B
TypeScript

import type { Linter } from 'eslint';
import { getBaseConfig, getTSVueConfig, getNodeFiles, unocss, getWorkerFiles } from '@jellyfin-vue/configs/lint';
import pkg from './package.json' with { type: 'json' };
// TODO: Add missing rules for i18n and json
export default [
...getBaseConfig(pkg.name),
...getTSVueConfig(true, import.meta.dirname),
...unocss,
...getNodeFiles(),
...getWorkerFiles(),
{
name: '(@jellyfin-vue/frontend) Ignored files',
ignores: [
'types/global/routes.d.ts',
'types/global/components.d.ts'
]
}
] satisfies Linter.Config[];