mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-04-24 07:05:46 +00:00
9 lines
291 B
TypeScript
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)
|
|
]);
|