0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-06-13 03:43:02 +00:00
Files
jellyfin-vue/packages/ui-toolkit/eslint.config.ts
2025-04-10 07:26:09 +00:00

9 lines
290 B
TypeScript

import { defineConfig } from 'eslint/config';
import { getBaseConfig, getTSVueConfig } from '@jellyfin-vue/configs/lint';
import pkg from './package.json' with { type: 'json' };
export default defineConfig([
...getBaseConfig(pkg.name),
...getTSVueConfig(true, import.meta.dirname)
]);