Files
jellyfin-vue/packages/frontend/eslint.config.ts
T

19 lines
556 B
TypeScript
Raw Normal View History

2025-04-10 07:26:09 +00:00
import { defineConfig } from 'eslint/config';
import { getBaseConfig, getTSVueConfig, getNodeFiles, unocss, getWorkerFiles } from '@jellyfin-vue/configs/lint';
import pkg from './package.json' with { type: 'json' };
2024-10-14 02:09:53 +02:00
2025-04-10 07:26:09 +00:00
export default defineConfig([
...getBaseConfig(pkg.name),
...getTSVueConfig(pkg.name, true, import.meta.dirname),
2024-10-14 02:09:53 +02:00
...unocss,
...getNodeFiles(pkg.name),
2024-10-26 12:59:22 +00:00
...getWorkerFiles(),
{
name: '(@jellyfin-vue/frontend) Ignored files',
ignores: [
'types/global/routes.d.ts',
'types/global/components.d.ts'
]
}
2025-04-10 07:26:09 +00:00
]);