mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-02-23 06:56:20 +00:00
10 lines
346 B
TypeScript
10 lines
346 B
TypeScript
import type { Linter } from 'eslint';
|
|
import { getBaseConfig, getNodeFiles, getTSVueConfig, 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[];
|