0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-04-04 12:05:17 +00:00
Files
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

10 lines
346 B
TypeScript

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