0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-06-11 21:22:56 +00:00
Files
jellyfin-vue/packages/shared/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

9 lines
295 B
TypeScript

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