mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-04-08 17:24:32 +00:00
9 lines
294 B
TypeScript
9 lines
294 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(true, import.meta.dirname)
|
|
] satisfies Linter.Config[];
|