0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-04-24 07:05:46 +00:00
Files
jellyfin-vue/packages/shared/eslint.config.ts
2025-04-10 07:26:09 +00:00

9 lines
291 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(false, import.meta.dirname)
]);